From 0663c490d29a254f8419f617ec032f0e84ee84fc Mon Sep 17 00:00:00 2001 From: Alexandre Jacinto Date: Fri, 7 Nov 2025 14:40:30 -0400 Subject: [PATCH 01/11] chore(android): update Gradle dependencies to latest versions --- plugin/android/build.gradle | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/plugin/android/build.gradle b/plugin/android/build.gradle index fc9e08a..21062e5 100644 --- a/plugin/android/build.gradle +++ b/plugin/android/build.gradle @@ -1,8 +1,8 @@ ext { junitVersion = project.hasProperty('junitVersion') ? rootProject.ext.junitVersion : '4.13.2' - androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.7.0' - androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.2.1' - androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.6.1' + androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.7.1' + androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.3.0' + androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.7.0' } buildscript { @@ -61,17 +61,17 @@ dependencies { implementation "io.ionic.libs:ionbarcode-android:2.0.1@aar" implementation project(':capacitor-android') implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion" - implementation 'androidx.activity:activity-ktx:1.9.3' - implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3' - implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3' - implementation 'com.google.zxing:core:3.4.1' + implementation 'androidx.activity:activity-ktx:1.11.0' + implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.2' + implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2' + implementation 'com.google.zxing:core:3.5.3' implementation 'com.google.mlkit:barcode-scanning:17.3.0' - implementation 'androidx.camera:camera-camera2:1.4.0' - implementation 'androidx.camera:camera-lifecycle:1.4.0' - implementation 'androidx.camera:camera-view:1.4.0' - implementation 'androidx.activity:activity-compose:1.9.3' - implementation 'androidx.compose.material3:material3:1.3.1' - implementation 'androidx.compose.material3:material3-window-size-class:1.3.1' + implementation 'androidx.camera:camera-camera2:1.5.1' + implementation 'androidx.camera:camera-lifecycle:1.5.1' + implementation 'androidx.camera:camera-view:1.5.1' + implementation 'androidx.activity:activity-compose:1.11.0' + implementation 'androidx.compose.material3:material3:1.4.0' + implementation 'androidx.compose.material3:material3-window-size-class:1.4.0' testImplementation "junit:junit:$junitVersion" androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion" androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion" From df84d2efc5297e8603792c871bd29a89624d9007 Mon Sep 17 00:00:00 2001 From: Alexandre Jacinto Date: Fri, 7 Nov 2025 14:40:58 -0400 Subject: [PATCH 02/11] chore(android): update compileSdk and targetSdk to 36 --- plugin/android/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/android/build.gradle b/plugin/android/build.gradle index 21062e5..927f5cd 100644 --- a/plugin/android/build.gradle +++ b/plugin/android/build.gradle @@ -25,10 +25,10 @@ apply plugin: 'kotlin-android' android { namespace "com.capacitorjs.barcodescanner" - compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 35 + compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 36 defaultConfig { minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 26 - targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 35 + targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 36 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" From 1a82db40a01d136ea9c665de844a6a77f4e365e5 Mon Sep 17 00:00:00 2001 From: Alexandre Jacinto Date: Fri, 7 Nov 2025 14:41:34 -0400 Subject: [PATCH 03/11] chore(android): update Gradle dependencies in example-app to latest --- example-app/android/variables.gradle | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/example-app/android/variables.gradle b/example-app/android/variables.gradle index aaa91dd..7860fe0 100644 --- a/example-app/android/variables.gradle +++ b/example-app/android/variables.gradle @@ -1,16 +1,16 @@ ext { minSdkVersion = 26 - compileSdkVersion = 35 - targetSdkVersion = 35 + compileSdkVersion = 36 + targetSdkVersion = 36 androidxActivityVersion = '1.8.0' - androidxAppCompatVersion = '1.7.0' - androidxCoordinatorLayoutVersion = '1.2.0' + androidxAppCompatVersion = '1.7.1' + androidxCoordinatorLayoutVersion = '1.3.0' androidxCoreVersion = '1.12.0' androidxFragmentVersion = '1.6.2' - coreSplashScreenVersion = '1.0.1' + coreSplashScreenVersion = '1.2.0' androidxWebkitVersion = '1.9.0' junitVersion = '4.13.2' - androidxJunitVersion = '1.1.5' - androidxEspressoCoreVersion = '3.5.1' + androidxJunitVersion = '1.3.0' + androidxEspressoCoreVersion = '3.7.0' cordovaAndroidVersion = '10.1.1' } \ No newline at end of file From 726f910b6e0879852c6df24cf1361cb9d8553303 Mon Sep 17 00:00:00 2001 From: Alexandre Jacinto Date: Mon, 10 Nov 2025 09:54:23 -0400 Subject: [PATCH 04/11] chore(android): use variable for `kotlinCoroutinesVersion` --- plugin/android/build.gradle | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugin/android/build.gradle b/plugin/android/build.gradle index 927f5cd..e1da434 100644 --- a/plugin/android/build.gradle +++ b/plugin/android/build.gradle @@ -3,6 +3,7 @@ ext { androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.7.1' androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.3.0' androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.7.0' + kotlinxCoroutinesVersion = project.hasProperty('kotlinxCoroutinesVersion') ? rootProject.ext.kotlinxCoroutinesVersion : '1.10.2' } buildscript { @@ -62,8 +63,8 @@ dependencies { implementation project(':capacitor-android') implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion" implementation 'androidx.activity:activity-ktx:1.11.0' - implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.2' - implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2' + implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:$kotlinxCoroutinesVersion" + implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlinxCoroutinesVersion" implementation 'com.google.zxing:core:3.5.3' implementation 'com.google.mlkit:barcode-scanning:17.3.0' implementation 'androidx.camera:camera-camera2:1.5.1' From 4dc76ccfd45caf86c39917779b5f6784447db01e Mon Sep 17 00:00:00 2001 From: Alexandre Jacinto Date: Wed, 26 Nov 2025 09:14:39 -0400 Subject: [PATCH 05/11] chore: update Capacitor dependencies to latest (8.0.0-beta.0) --- example-app-spm/package.json | 6 +++--- example-app/package.json | 8 ++++---- plugin/package.json | 8 ++++---- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/example-app-spm/package.json b/example-app-spm/package.json index fad9a32..dc101e2 100644 --- a/example-app-spm/package.json +++ b/example-app-spm/package.json @@ -13,8 +13,8 @@ }, "dependencies": { "@capacitor/barcode-scanner": "file:../plugin/", - "@capacitor/core": "next", - "@capacitor/ios": "next", + "@capacitor/core": "8.0.0-beta.0", + "@capacitor/ios": "8.0.0-beta.0", "@ionic/react": "^8.7.0", "@ionic/react-router": "^8.7.0", "@types/react-router": "^5.1.20", @@ -26,7 +26,7 @@ "react-router-dom": "^5.3.4" }, "devDependencies": { - "@capacitor/cli": "next", + "@capacitor/cli": "8.0.0-beta.0", "@testing-library/dom": ">=7.21.4", "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^14.0.0", diff --git a/example-app/package.json b/example-app/package.json index 886514b..1111e5f 100644 --- a/example-app/package.json +++ b/example-app/package.json @@ -12,10 +12,10 @@ "lint": "eslint" }, "dependencies": { - "@capacitor/android": "next", + "@capacitor/android": "8.0.0-beta.0", "@capacitor/barcode-scanner": "file:../plugin/", - "@capacitor/core": "next", - "@capacitor/ios": "next", + "@capacitor/core": "8.0.0-beta.0", + "@capacitor/ios": "8.0.0-beta.0", "@ionic/react": "^8.7.0", "@ionic/react-router": "^8.7.0", "@types/react-router": "^5.1.20", @@ -27,7 +27,7 @@ "react-router-dom": "^5.3.4" }, "devDependencies": { - "@capacitor/cli": "next", + "@capacitor/cli": "8.0.0-beta.0", "@testing-library/dom": ">=7.21.4", "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^14.0.0", diff --git a/plugin/package.json b/plugin/package.json index 370ecf8..f217bba 100644 --- a/plugin/package.json +++ b/plugin/package.json @@ -53,10 +53,10 @@ "html5-qrcode": "2.3.8" }, "devDependencies": { - "@capacitor/android": "next", - "@capacitor/core": "next", + "@capacitor/android": "8.0.0-beta.0", + "@capacitor/core": "8.0.0-beta.0", "@capacitor/docgen": "^0.2.2", - "@capacitor/ios": "next", + "@capacitor/ios": "8.0.0-beta.0", "@ionic/swiftlint-config": "^1.1.2", "@types/node": "~20.12.4", "@typescript-eslint/eslint-plugin": "^5.59.2", @@ -71,7 +71,7 @@ "typescript": "~5.7.2" }, "peerDependencies": { - "@capacitor/core": "next" + "@capacitor/core": "8.0.0-beta.0" }, "swiftlint": "@ionic/swiftlint-config", "capacitor": { From 8eb9672a0326707f699b2e2254264665dad7037d Mon Sep 17 00:00:00 2001 From: Alexandre Jacinto Date: Wed, 26 Nov 2025 09:36:58 -0400 Subject: [PATCH 06/11] chore: get npm dependencies from main branch --- example-app-spm/package.json | 48 ++++++++++++++++++------------------ example-app/package.json | 48 ++++++++++++++++++------------------ plugin/package.json | 26 +++++++++---------- 3 files changed, 61 insertions(+), 61 deletions(-) diff --git a/example-app-spm/package.json b/example-app-spm/package.json index dc101e2..4a644d3 100644 --- a/example-app-spm/package.json +++ b/example-app-spm/package.json @@ -15,35 +15,35 @@ "@capacitor/barcode-scanner": "file:../plugin/", "@capacitor/core": "8.0.0-beta.0", "@capacitor/ios": "8.0.0-beta.0", - "@ionic/react": "^8.7.0", - "@ionic/react-router": "^8.7.0", - "@types/react-router": "^5.1.20", - "@types/react-router-dom": "^5.3.3", - "ionicons": "^7.0.0", - "react": "^18.2.0", - "react-dom": "^18.2.0", + "@ionic/react": "^8.7.9", + "@ionic/react-router": "^8.7.9", + "ionicons": "^8.0.13", + "react": "^19.2.0", + "react-dom": "^19.2.0", "react-router": "^5.3.4", "react-router-dom": "^5.3.4" }, "devDependencies": { "@capacitor/cli": "8.0.0-beta.0", - "@testing-library/dom": ">=7.21.4", - "@testing-library/jest-dom": "^5.16.5", - "@testing-library/react": "^14.0.0", - "@testing-library/user-event": "^14.4.3", - "@types/jest": "^29.5.12", - "@types/react": "^18.0.27", - "@types/react-dom": "^18.0.10", - "@vitejs/plugin-legacy": "^5.0.0", - "@vitejs/plugin-react": "^4.2.1", - "cypress": "^13.5.0", - "eslint": "^8.35.0", - "eslint-plugin-react": "^7.32.2", - "jsdom": "^22.1.0", - "terser": "^5.4.0", - "typescript": "^5.1.6", - "vite": "^5.0.0", - "vitest": "^0.34.6" + "@testing-library/dom": "^10.4.1", + "@testing-library/jest-dom": "^6.9.1", + "@testing-library/react": "^16.3.0", + "@testing-library/user-event": "^14.6.1", + "@types/jest": "^30.0.0", + "@types/react": "^19.2.6", + "@types/react-dom": "^19.2.3", + "@types/react-router": "^5.1.20", + "@types/react-router-dom": "^5.3.3", + "@vitejs/plugin-legacy": "^7.2.1", + "@vitejs/plugin-react": "^5.1.1", + "cypress": "^15.6.0", + "eslint": "^8.57.1", + "eslint-plugin-react": "^7.37.5", + "jsdom": "^27.2.0", + "terser": "^5.44.1", + "typescript": "^5.9.3", + "vite": "^7.2.2", + "vitest": "^4.0.10" }, "description": "An Ionic project" } diff --git a/example-app/package.json b/example-app/package.json index 44209b0..5dca5c8 100644 --- a/example-app/package.json +++ b/example-app/package.json @@ -16,35 +16,35 @@ "@capacitor/barcode-scanner": "file:../plugin/", "@capacitor/core": "8.0.0-beta.0", "@capacitor/ios": "8.0.0-beta.0", - "@ionic/react": "^8.7.0", - "@ionic/react-router": "^8.7.0", - "@types/react-router": "^5.1.20", - "@types/react-router-dom": "^5.3.3", - "ionicons": "^7.0.0", - "react": "^18.2.0", - "react-dom": "^18.2.0", + "@ionic/react": "^8.7.9", + "@ionic/react-router": "^8.7.9", + "ionicons": "^8.0.13", + "react": "^19.2.0", + "react-dom": "^19.2.0", "react-router": "^5.3.4", "react-router-dom": "^5.3.4" }, "devDependencies": { "@capacitor/cli": "8.0.0-beta.0", - "@testing-library/dom": ">=7.21.4", - "@testing-library/jest-dom": "^5.16.5", - "@testing-library/react": "^14.0.0", - "@testing-library/user-event": "^14.4.3", - "@types/jest": "^29.5.12", - "@types/react": "^18.0.27", - "@types/react-dom": "^18.0.10", - "@vitejs/plugin-legacy": "^5.0.0", - "@vitejs/plugin-react": "^4.2.1", - "cypress": "^13.5.0", - "eslint": "^8.35.0", - "eslint-plugin-react": "^7.32.2", - "jsdom": "^22.1.0", - "terser": "^5.4.0", - "typescript": "^5.1.6", - "vite": "^5.0.0", - "vitest": "^0.34.6" + "@testing-library/dom": ">=10.4.1", + "@testing-library/jest-dom": "^6.9.1", + "@testing-library/react": "^16.3.0", + "@testing-library/user-event": "^14.6.1", + "@types/jest": "^30.0.0", + "@types/react": "^19.2.6", + "@types/react-dom": "^19.2.3", + "@types/react-router": "^5.1.20", + "@types/react-router-dom": "^5.3.3", + "@vitejs/plugin-legacy": "^7.2.1", + "@vitejs/plugin-react": "^5.1.1", + "cypress": "^15.6.0", + "eslint": "^8.57.1", + "eslint-plugin-react": "^7.37.5", + "jsdom": "^27.2.0", + "terser": "^5.44.1", + "typescript": "^5.9.3", + "vite": "^7.2.2", + "vitest": "^4.0.10" }, "description": "An Ionic project" } \ No newline at end of file diff --git a/plugin/package.json b/plugin/package.json index e9c73e9..a751514 100644 --- a/plugin/package.json +++ b/plugin/package.json @@ -55,20 +55,20 @@ "devDependencies": { "@capacitor/android": "8.0.0-beta.0", "@capacitor/core": "8.0.0-beta.0", - "@capacitor/docgen": "^0.2.2", + "@capacitor/docgen": "0.3.0", "@capacitor/ios": "8.0.0-beta.0", - "@ionic/swiftlint-config": "^1.1.2", - "@types/node": "~20.12.4", - "@typescript-eslint/eslint-plugin": "^5.59.2", - "@typescript-eslint/parser": "^5.59.2", - "eslint": "^8.57.0", - "eslint-config-prettier": "^8.8.0", - "prettier": "^2.8.8", - "prettier-plugin-java": "~2.1.0", - "rimraf": "^3.0.2", - "rollup": "^2.78.1", - "swiftlint": "^1.0.2", - "typescript": "~5.7.2" + "@ionic/swiftlint-config": "^2.0.0", + "@types/node": "^24.10.1", + "@typescript-eslint/eslint-plugin": "^8.47.0", + "@typescript-eslint/parser": "^8.47.0", + "eslint": "^9.39.1", + "eslint-config-prettier": "^10.1.8", + "prettier": "^3.6.2", + "prettier-plugin-java": "^2.7.7", + "rimraf": "^6.1.0", + "rollup": "^4.53.2", + "swiftlint": "^2.0.0", + "typescript": "^5.9.3" }, "peerDependencies": { "@capacitor/core": "8.0.0-beta.0" From 56a87530cd1fbb10e358910263025286c27facae Mon Sep 17 00:00:00 2001 From: Alexandre Jacinto Date: Wed, 26 Nov 2025 09:39:04 -0400 Subject: [PATCH 07/11] chore: update npm version --- example-app/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example-app/package.json b/example-app/package.json index 5dca5c8..c9ae88c 100644 --- a/example-app/package.json +++ b/example-app/package.json @@ -26,7 +26,7 @@ }, "devDependencies": { "@capacitor/cli": "8.0.0-beta.0", - "@testing-library/dom": ">=10.4.1", + "@testing-library/dom": "^10.4.1", "@testing-library/jest-dom": "^6.9.1", "@testing-library/react": "^16.3.0", "@testing-library/user-event": "^14.6.1", From e327c41855697266bdf61f67c478aadadd3af67c Mon Sep 17 00:00:00 2001 From: Alexandre Jacinto Date: Wed, 26 Nov 2025 12:57:46 -0400 Subject: [PATCH 08/11] chore: update compileSdkVersion to 36 Co-authored-by: Pedro Bilro --- plugin/android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/android/build.gradle b/plugin/android/build.gradle index c39a7ca..adb2b9e 100644 --- a/plugin/android/build.gradle +++ b/plugin/android/build.gradle @@ -26,7 +26,7 @@ apply plugin: 'kotlin-android' android { namespace = "com.capacitorjs.barcodescanner" - compileSdk = project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 35 + compileSdk = project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 36 defaultConfig { minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 26 targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 36 From 89eec51802ba408e702669feba6aae591a6a1d2c Mon Sep 17 00:00:00 2001 From: Alexandre Jacinto Date: Wed, 26 Nov 2025 12:59:20 -0400 Subject: [PATCH 09/11] chore: update capacitor/core --- plugin/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/package.json b/plugin/package.json index a751514..001f354 100644 --- a/plugin/package.json +++ b/plugin/package.json @@ -71,7 +71,7 @@ "typescript": "^5.9.3" }, "peerDependencies": { - "@capacitor/core": "8.0.0-beta.0" + "@capacitor/core": ">=8.0.0-beta.0" }, "swiftlint": "@ionic/swiftlint-config", "capacitor": { From 8ff19192813eb03ea8f9bd25e22a30835c7b9185 Mon Sep 17 00:00:00 2001 From: Alexandre Jacinto Date: Wed, 26 Nov 2025 13:52:45 -0400 Subject: [PATCH 10/11] chore: update ios deployment target to 15 --- plugin/CapacitorBarcodeScanner.podspec | 2 +- plugin/Package.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/CapacitorBarcodeScanner.podspec b/plugin/CapacitorBarcodeScanner.podspec index 8260a11..9a43812 100644 --- a/plugin/CapacitorBarcodeScanner.podspec +++ b/plugin/CapacitorBarcodeScanner.podspec @@ -11,7 +11,7 @@ Pod::Spec.new do |s| s.author = package['author'] s.source = { :git => package['repository']['url'], :tag => s.version.to_s } s.source_files = 'ios/Sources/**/*.{swift,h,m,c,cc,mm,cpp}' - s.ios.deployment_target = '14.0' + s.ios.deployment_target = '15.0' s.dependency 'Capacitor' s.dependency 'OSBarcodeLib', '2.0.1' s.swift_version = '5.1' diff --git a/plugin/Package.swift b/plugin/Package.swift index d088cb3..034d7aa 100644 --- a/plugin/Package.swift +++ b/plugin/Package.swift @@ -3,7 +3,7 @@ import PackageDescription let package = Package( name: "CapacitorBarcodeScanner", - platforms: [.iOS(.v14)], + platforms: [.iOS(.v15)], products: [ .library( name: "CapacitorBarcodeScanner", From 703f18538a5ad6c1d57ada8c71a31e53c099efd5 Mon Sep 17 00:00:00 2001 From: Alexandre Jacinto Date: Wed, 26 Nov 2025 15:33:21 -0400 Subject: [PATCH 11/11] chore: update ios deployment target in example-app to 15.0 --- example-app/ios/App/App.xcodeproj/project.pbxproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example-app/ios/App/App.xcodeproj/project.pbxproj b/example-app/ios/App/App.xcodeproj/project.pbxproj index b47e188..15e9aea 100644 --- a/example-app/ios/App/App.xcodeproj/project.pbxproj +++ b/example-app/ios/App/App.xcodeproj/project.pbxproj @@ -351,7 +351,7 @@ CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_TEAM = 9YN2HU59K8; INFOPLIST_FILE = App/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 14.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; MARKETING_VERSION = 1.0; OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\""; @@ -372,7 +372,7 @@ CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_TEAM = 9YN2HU59K8; INFOPLIST_FILE = App/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 14.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; MARKETING_VERSION = 1.0; PRODUCT_BUNDLE_IDENTIFIER = io.ionic.starter;