diff --git a/CapacitorCamera.podspec b/CapacitorCamera.podspec index 2bb9bde..040b609 100644 --- a/CapacitorCamera.podspec +++ b/CapacitorCamera.podspec @@ -13,6 +13,6 @@ Pod::Spec.new do |s| s.source_files = 'ios/Sources/**/*.{swift,h,m,c,cc,mm,cpp}', s.ios.deployment_target = '15.0' s.dependency 'Capacitor' - s.dependency 'IONCameraLib', spec='~> 0.1.2' + s.dependency 'IONCameraLib', spec='~> 1.0.0' s.swift_version = '5.1' end diff --git a/Package.swift b/Package.swift index a38d7fd..729186e 100644 --- a/Package.swift +++ b/Package.swift @@ -11,7 +11,7 @@ let package = Package( ], dependencies: [ .package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "8.0.0"), - .package(url: "https://github.com/ionic-team/ion-ios-camera.git", branch: "main") // TODO: update to a stable release when available + .package(url: "https://github.com/ionic-team/ion-ios-camera.git", from: "1.0.0") ], targets: [ .target( diff --git a/android/build.gradle b/android/build.gradle index 2888ec5..d03df6c 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -74,6 +74,8 @@ repositories { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) + + implementation 'io.ionic.libs:ioncamera-android:1.0.0' if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") { implementation "com.capacitorjs:core:$capacitorVersion" @@ -89,5 +91,4 @@ dependencies { androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion" androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion" implementation 'com.google.code.gson:gson:2.10.1' - implementation 'io.ionic.libs:ioncamera-android:0.1.0' } \ No newline at end of file