Skip to content

Commit 3a96f3f

Browse files
Copilotjohnborges
andcommitted
Update to Capacitor 8.0.0-beta.0 support
Co-authored-by: johnborges <[email protected]>
1 parent ce17253 commit 3a96f3f

File tree

12 files changed

+1256
-850
lines changed

12 files changed

+1256
-850
lines changed

CapacitorCommunityAppIcon.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Pod::Spec.new do |s|
1111
s.author = package['author']
1212
s.source = { :git => package['repository']['url'], :tag => s.version.to_s }
1313
s.source_files = 'ios/Sources/**/*.{swift,h,m,c,cc,mm,cpp}'
14-
s.ios.deployment_target = '14.0'
14+
s.ios.deployment_target = '15.0'
1515
s.dependency 'Capacitor'
1616
s.swift_version = '5.1'
1717
end

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ import PackageDescription
33

44
let package = Package(
55
name: "CapacitorCommunityAppIcon",
6-
platforms: [.iOS(.v14)],
6+
platforms: [.iOS(.v15)],
77
products: [
88
.library(
99
name: "CapacitorCommunityAppIcon",
1010
targets: ["AppIconPlugin"])
1111
],
1212
dependencies: [
13-
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "7.0.0")
13+
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "8.0.0-beta.0")
1414
],
1515
targets: [
1616
.target(

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ android {
2121
namespace "com.getcapacitor.community.appicon"
2222
compileSdkVersion project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 35
2323
defaultConfig {
24-
minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 23
24+
minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 24
2525
targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 35
2626
versionCode 1
2727
versionName "1.0"

example/android/variables.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ext {
2-
minSdkVersion = 23
2+
minSdkVersion = 24
33
compileSdkVersion = 35
44
targetSdkVersion = 35
55
androidxActivityVersion = '1.9.2'

example/ios/App/App.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@
285285
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
286286
GCC_WARN_UNUSED_FUNCTION = YES;
287287
GCC_WARN_UNUSED_VARIABLE = YES;
288-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
288+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
289289
MTL_ENABLE_DEBUG_INFO = YES;
290290
ONLY_ACTIVE_ARCH = YES;
291291
SDKROOT = iphoneos;
@@ -336,7 +336,7 @@
336336
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
337337
GCC_WARN_UNUSED_FUNCTION = YES;
338338
GCC_WARN_UNUSED_VARIABLE = YES;
339-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
339+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
340340
MTL_ENABLE_DEBUG_INFO = NO;
341341
SDKROOT = iphoneos;
342342
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
@@ -353,7 +353,7 @@
353353
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
354354
CODE_SIGN_STYLE = Automatic;
355355
INFOPLIST_FILE = App/Info.plist;
356-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
356+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
357357
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
358358
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
359359
PRODUCT_BUNDLE_IDENTIFIER = com.example.app;
@@ -373,7 +373,7 @@
373373
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
374374
CODE_SIGN_STYLE = Automatic;
375375
INFOPLIST_FILE = App/Info.plist;
376-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
376+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
377377
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
378378
PRODUCT_BUNDLE_IDENTIFIER = com.example.app;
379379
PRODUCT_NAME = "$(TARGET_NAME)";

example/ios/App/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
require_relative '../../node_modules/@capacitor/ios/scripts/pods_helpers'
22

3-
platform :ios, '14.0'
3+
platform :ios, '15.0'
44
use_frameworks!
55

66
# workaround to avoid Xcode caching of Pods that requires

0 commit comments

Comments
 (0)