@regulaforensics/face-sdk 8.2.815-nightly → 8.2.820-rc
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/RNFaceSDK.podspec +4 -4
- package/android/{CDVFaceSDK.kt → CVDFaceSDK.kt} +1 -1
- package/android/build.gradle +2 -2
- package/android/cordova.gradle +2 -2
- package/android/src/main/java/com/regula/plugin/facesdk/JSONConstructor.kt +7 -12
- package/examples/capacitor/android/app/build.gradle +2 -2
- package/examples/capacitor/android/app/capacitor.build.gradle +3 -2
- package/examples/capacitor/android/app/src/main/AndroidManifest.xml +1 -1
- package/examples/capacitor/android/build.gradle +3 -3
- package/examples/capacitor/android/capacitor.settings.gradle +5 -2
- package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.properties +1 -1
- package/examples/capacitor/android/gradlew +5 -4
- package/examples/capacitor/android/gradlew.bat +2 -2
- package/examples/capacitor/android/variables.gradle +10 -10
- package/examples/capacitor/ios/App/App.xcodeproj/project.pbxproj +4 -20
- package/examples/capacitor/ios/App/Podfile +1 -5
- package/examples/capacitor/ios/App/Podfile.lock +14 -14
- package/examples/capacitor/package-lock.json +847 -811
- package/examples/capacitor/package.json +17 -17
- package/examples/ionic/images/icon.png +0 -0
- package/examples/ionic/package-lock.json +2419 -2633
- package/examples/ionic/package.json +14 -16
- package/examples/ionic/scripts/ios.sh +1 -1
- package/examples/react_native/package-lock.json +1443 -1161
- package/examples/react_native/package.json +2 -2
- package/ios/CVDFaceSDK.h +7 -0
- package/ios/CVDFaceSDK.m +43 -0
- package/ios/RFSWConfig.h +27 -0
- package/ios/RFSWConfig.m +199 -0
- package/ios/RFSWJSONConstructor.h +135 -0
- package/ios/RFSWJSONConstructor.m +985 -0
- package/ios/RFSWMain.h +24 -0
- package/ios/RFSWMain.m +381 -0
- package/ios/RNFaceSDK.h +8 -0
- package/ios/RNFaceSDK.m +39 -7
- package/package.json +1 -1
- package/plugin.xml +13 -11
- package/test/package-lock.json +1 -1
- package/www/cordova.js +6 -6
- package/examples/ionic/patches/cordova-plugin-ionic-webview+5.0.1.patch +0 -23
- package/ios/CDVFaceSDK.swift +0 -42
- package/ios/Config.swift +0 -242
- package/ios/Decoder.swift +0 -934
- package/ios/Main.swift +0 -191
- package/ios/RNFaceSDK.swift +0 -42
- package/ios/Utils.swift +0 -82
package/RNFaceSDK.podspec
CHANGED
|
@@ -5,7 +5,7 @@ source = File.join(__dir__, 'ios')
|
|
|
5
5
|
|
|
6
6
|
Pod::Spec.new do |s|
|
|
7
7
|
s.name = 'RNFaceSDK'
|
|
8
|
-
s.version = '8.2.
|
|
8
|
+
s.version = '8.2.820-rc'
|
|
9
9
|
s.summary = package['description']
|
|
10
10
|
s.license = package['license']
|
|
11
11
|
|
|
@@ -14,8 +14,8 @@ Pod::Spec.new do |s|
|
|
|
14
14
|
|
|
15
15
|
s.source = { http: "file:#{source}" }
|
|
16
16
|
s.ios.deployment_target = '13.0'
|
|
17
|
-
s.source_files =
|
|
18
|
-
s.exclude_files = [ 'ios/
|
|
19
|
-
s.dependency '
|
|
17
|
+
s.source_files = 'ios/**/*.{h,m}'
|
|
18
|
+
s.exclude_files = [ 'ios/CVDFaceSDK.h', 'ios/CVDFaceSDK.m' ]
|
|
19
|
+
s.dependency 'FaceSDKStage', '8.2.3758'
|
|
20
20
|
s.dependency 'React'
|
|
21
21
|
end
|
package/android/build.gradle
CHANGED
|
@@ -20,7 +20,7 @@ android {
|
|
|
20
20
|
rootProject.allprojects {
|
|
21
21
|
repositories {
|
|
22
22
|
maven {
|
|
23
|
-
url "https://maven.regulaforensics.com/RegulaDocumentReader/
|
|
23
|
+
url "https://maven.regulaforensics.com/RegulaDocumentReader/Stage"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
}
|
|
@@ -29,7 +29,7 @@ dependencies {
|
|
|
29
29
|
//noinspection GradleDynamicVersion
|
|
30
30
|
implementation 'com.facebook.react:react-native:+'
|
|
31
31
|
//noinspection GradleDependency
|
|
32
|
-
implementation('com.regula.face:api:8.2.
|
|
32
|
+
implementation('com.regula.face:api:8.2.4476'){
|
|
33
33
|
transitive = true
|
|
34
34
|
}
|
|
35
35
|
}
|
package/android/cordova.gradle
CHANGED
|
@@ -6,13 +6,13 @@ android {
|
|
|
6
6
|
|
|
7
7
|
repositories {
|
|
8
8
|
maven {
|
|
9
|
-
url "https://maven.regulaforensics.com/RegulaDocumentReader/
|
|
9
|
+
url "https://maven.regulaforensics.com/RegulaDocumentReader/Stage"
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
dependencies {
|
|
14
14
|
//noinspection GradleDependency
|
|
15
|
-
implementation('com.regula.face:api:8.2.
|
|
15
|
+
implementation('com.regula.face:api:8.2.4476'){
|
|
16
16
|
transitive = true
|
|
17
17
|
}
|
|
18
18
|
}
|
|
@@ -636,18 +636,13 @@ fun generateDetectFacesConfig(input: DetectFacesConfiguration?) = input?.let {
|
|
|
636
636
|
|
|
637
637
|
fun detectFacesRequestFromJSON(input: JSONObject) = input.let {
|
|
638
638
|
val image = it.getString("image").toBitmap()!!
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
String::class.java,
|
|
647
|
-
DetectFacesConfiguration::class.java,
|
|
648
|
-
String::class.java
|
|
649
|
-
).instantiate(image, scenario, null, tag)
|
|
650
|
-
} ?: DetectFacesRequest(image, config, tag)
|
|
639
|
+
it.getStringOrNull("scenario")?.let { scenario ->
|
|
640
|
+
DetectFacesRequest::class.java.getDeclaredConstructor(Bitmap::class.java, String::class.java).instantiate(image, scenario)
|
|
641
|
+
} ?: DetectFacesRequest(
|
|
642
|
+
image,
|
|
643
|
+
detectFacesConfigFromJSON(it.getJSONObjectOrNull("configuration")),
|
|
644
|
+
it.getStringOrNull("tag")
|
|
645
|
+
)
|
|
651
646
|
}
|
|
652
647
|
|
|
653
648
|
fun generateDetectFacesRequest(it: DetectFacesRequest) = mapOf(
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
apply plugin: 'com.android.application'
|
|
2
2
|
|
|
3
3
|
android {
|
|
4
|
-
namespace
|
|
4
|
+
namespace "com.regula.example.face.capacitor"
|
|
5
5
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
|
6
6
|
defaultConfig {
|
|
7
7
|
applicationId "com.regula.example.face.capacitor"
|
|
@@ -12,7 +12,7 @@ android {
|
|
|
12
12
|
aaptOptions {
|
|
13
13
|
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
|
|
14
14
|
// Default: https://android.googlesource.com/platform/frameworks/base/+/282e181b58cf72b6ca770dc7ca5f91f135444502/tools/aapt/AaptAssets.cpp#61
|
|
15
|
-
ignoreAssetsPattern
|
|
15
|
+
ignoreAssetsPattern '!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~'
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
buildTypes {
|
|
@@ -10,10 +10,11 @@ android {
|
|
|
10
10
|
apply from: "../capacitor-cordova-android-plugins/cordova.variables.gradle"
|
|
11
11
|
dependencies {
|
|
12
12
|
implementation project(':capacitor-app')
|
|
13
|
-
implementation project(':capacitor-
|
|
13
|
+
implementation project(':capacitor-haptics')
|
|
14
|
+
implementation project(':capacitor-keyboard')
|
|
14
15
|
implementation project(':capacitor-status-bar')
|
|
15
|
-
implementation "androidx.webkit:webkit:1.4.0"
|
|
16
16
|
implementation "androidx.core:core:1.6.+"
|
|
17
|
+
implementation "androidx.webkit:webkit:1.4.0"
|
|
17
18
|
}
|
|
18
19
|
|
|
19
20
|
if (hasProperty('postBuildExtras')) {
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
android:usesCleartextTraffic="true">
|
|
10
10
|
<activity
|
|
11
11
|
android:name=".MainActivity"
|
|
12
|
-
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode|navigation
|
|
12
|
+
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode|navigation"
|
|
13
13
|
android:exported="true"
|
|
14
14
|
android:launchMode="singleTask"
|
|
15
15
|
android:screenOrientation="portrait"
|
|
@@ -7,9 +7,9 @@ buildscript {
|
|
|
7
7
|
mavenCentral()
|
|
8
8
|
}
|
|
9
9
|
dependencies {
|
|
10
|
-
classpath 'com.android.tools.build:gradle:8.
|
|
11
|
-
classpath 'com.google.gms:google-services:4.4.
|
|
12
|
-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:
|
|
10
|
+
classpath 'com.android.tools.build:gradle:8.8.0'
|
|
11
|
+
classpath 'com.google.gms:google-services:4.4.2'
|
|
12
|
+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.25"
|
|
13
13
|
|
|
14
14
|
// NOTE: Do not place your application dependencies here; they belong
|
|
15
15
|
// in the individual module build.gradle files
|
|
@@ -5,8 +5,11 @@ project(':capacitor-android').projectDir = new File('../node_modules/@capacitor/
|
|
|
5
5
|
include ':capacitor-app'
|
|
6
6
|
project(':capacitor-app').projectDir = new File('../node_modules/@capacitor/app/android')
|
|
7
7
|
|
|
8
|
-
include ':capacitor-
|
|
9
|
-
project(':capacitor-
|
|
8
|
+
include ':capacitor-haptics'
|
|
9
|
+
project(':capacitor-haptics').projectDir = new File('../node_modules/@capacitor/haptics/android')
|
|
10
|
+
|
|
11
|
+
include ':capacitor-keyboard'
|
|
12
|
+
project(':capacitor-keyboard').projectDir = new File('../node_modules/@capacitor/keyboard/android')
|
|
10
13
|
|
|
11
14
|
include ':capacitor-status-bar'
|
|
12
15
|
project(':capacitor-status-bar').projectDir = new File('../node_modules/@capacitor/status-bar/android')
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
distributionBase=GRADLE_USER_HOME
|
|
2
2
|
distributionPath=wrapper/dists
|
|
3
|
-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.
|
|
3
|
+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
|
|
4
4
|
networkTimeout=10000
|
|
5
5
|
validateDistributionUrl=true
|
|
6
6
|
zipStoreBase=GRADLE_USER_HOME
|
|
@@ -86,7 +86,8 @@ done
|
|
|
86
86
|
# shellcheck disable=SC2034
|
|
87
87
|
APP_BASE_NAME=${0##*/}
|
|
88
88
|
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
|
|
89
|
-
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
|
|
89
|
+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
|
|
90
|
+
' "$PWD" ) || exit
|
|
90
91
|
|
|
91
92
|
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
|
92
93
|
MAX_FD=maximum
|
|
@@ -114,7 +115,7 @@ case "$( uname )" in #(
|
|
|
114
115
|
NONSTOP* ) nonstop=true ;;
|
|
115
116
|
esac
|
|
116
117
|
|
|
117
|
-
CLASSPATH
|
|
118
|
+
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
|
|
118
119
|
|
|
119
120
|
|
|
120
121
|
# Determine the Java command to use to start the JVM.
|
|
@@ -205,7 +206,7 @@ fi
|
|
|
205
206
|
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
|
206
207
|
|
|
207
208
|
# Collect all arguments for the java command:
|
|
208
|
-
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
|
|
209
|
+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
|
|
209
210
|
# and any embedded shellness will be escaped.
|
|
210
211
|
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
|
|
211
212
|
# treated as '${Hostname}' itself on the command line.
|
|
@@ -213,7 +214,7 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
|
|
213
214
|
set -- \
|
|
214
215
|
"-Dorg.gradle.appname=$APP_BASE_NAME" \
|
|
215
216
|
-classpath "$CLASSPATH" \
|
|
216
|
-
|
|
217
|
+
org.gradle.wrapper.GradleWrapperMain \
|
|
217
218
|
"$@"
|
|
218
219
|
|
|
219
220
|
# Stop when "xargs" is not available.
|
|
@@ -70,11 +70,11 @@ goto fail
|
|
|
70
70
|
:execute
|
|
71
71
|
@rem Setup the command line
|
|
72
72
|
|
|
73
|
-
set CLASSPATH
|
|
73
|
+
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
|
|
74
74
|
|
|
75
75
|
|
|
76
76
|
@rem Execute Gradle
|
|
77
|
-
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%"
|
|
77
|
+
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
|
|
78
78
|
|
|
79
79
|
:end
|
|
80
80
|
@rem End local scope for the variables with windows NT shell
|
|
@@ -2,15 +2,15 @@ ext {
|
|
|
2
2
|
minSdkVersion = 26
|
|
3
3
|
compileSdkVersion = 36
|
|
4
4
|
targetSdkVersion = 36
|
|
5
|
-
androidxActivityVersion = '1.
|
|
6
|
-
androidxAppCompatVersion = '1.7.
|
|
7
|
-
androidxCoordinatorLayoutVersion = '1.
|
|
8
|
-
androidxCoreVersion = '1.
|
|
9
|
-
androidxFragmentVersion = '1.8.
|
|
10
|
-
coreSplashScreenVersion = '1.
|
|
11
|
-
androidxWebkitVersion = '1.
|
|
5
|
+
androidxActivityVersion = '1.9.2'
|
|
6
|
+
androidxAppCompatVersion = '1.7.0'
|
|
7
|
+
androidxCoordinatorLayoutVersion = '1.2.0'
|
|
8
|
+
androidxCoreVersion = '1.15.0'
|
|
9
|
+
androidxFragmentVersion = '1.8.4'
|
|
10
|
+
coreSplashScreenVersion = '1.0.1'
|
|
11
|
+
androidxWebkitVersion = '1.12.1'
|
|
12
12
|
junitVersion = '4.13.2'
|
|
13
|
-
androidxJunitVersion = '1.
|
|
14
|
-
androidxEspressoCoreVersion = '3.
|
|
15
|
-
cordovaAndroidVersion = '14.0.
|
|
13
|
+
androidxJunitVersion = '1.2.1'
|
|
14
|
+
androidxEspressoCoreVersion = '3.6.1'
|
|
15
|
+
cordovaAndroidVersion = '14.0.0'
|
|
16
16
|
}
|
|
@@ -108,7 +108,6 @@
|
|
|
108
108
|
504EC3011FED79650016851F /* Frameworks */,
|
|
109
109
|
504EC3021FED79650016851F /* Resources */,
|
|
110
110
|
9592DBEFFC6D2A0C8D5DEB22 /* [CP] Embed Pods Frameworks */,
|
|
111
|
-
7D56AA6606A87F8FA13FB093 /* [CP] Copy Pods Resources */,
|
|
112
111
|
);
|
|
113
112
|
buildRules = (
|
|
114
113
|
);
|
|
@@ -188,21 +187,6 @@
|
|
|
188
187
|
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
|
189
188
|
showEnvVarsInLog = 0;
|
|
190
189
|
};
|
|
191
|
-
7D56AA6606A87F8FA13FB093 /* [CP] Copy Pods Resources */ = {
|
|
192
|
-
isa = PBXShellScriptBuildPhase;
|
|
193
|
-
buildActionMask = 2147483647;
|
|
194
|
-
files = (
|
|
195
|
-
);
|
|
196
|
-
inputPaths = (
|
|
197
|
-
);
|
|
198
|
-
name = "[CP] Copy Pods Resources";
|
|
199
|
-
outputPaths = (
|
|
200
|
-
);
|
|
201
|
-
runOnlyForDeploymentPostprocessing = 0;
|
|
202
|
-
shellPath = /bin/sh;
|
|
203
|
-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-App/Pods-App-resources.sh\"\n";
|
|
204
|
-
showEnvVarsInLog = 0;
|
|
205
|
-
};
|
|
206
190
|
9592DBEFFC6D2A0C8D5DEB22 /* [CP] Embed Pods Frameworks */ = {
|
|
207
191
|
isa = PBXShellScriptBuildPhase;
|
|
208
192
|
buildActionMask = 2147483647;
|
|
@@ -299,7 +283,7 @@
|
|
|
299
283
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
300
284
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
301
285
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
302
|
-
IPHONEOS_DEPLOYMENT_TARGET =
|
|
286
|
+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
|
|
303
287
|
MTL_ENABLE_DEBUG_INFO = YES;
|
|
304
288
|
ONLY_ACTIVE_ARCH = YES;
|
|
305
289
|
SDKROOT = iphoneos;
|
|
@@ -350,7 +334,7 @@
|
|
|
350
334
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
351
335
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
352
336
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
353
|
-
IPHONEOS_DEPLOYMENT_TARGET =
|
|
337
|
+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
|
|
354
338
|
MTL_ENABLE_DEBUG_INFO = NO;
|
|
355
339
|
SDKROOT = iphoneos;
|
|
356
340
|
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
|
|
@@ -367,7 +351,7 @@
|
|
|
367
351
|
CODE_SIGN_STYLE = Automatic;
|
|
368
352
|
CURRENT_PROJECT_VERSION = 1;
|
|
369
353
|
INFOPLIST_FILE = App/Info.plist;
|
|
370
|
-
IPHONEOS_DEPLOYMENT_TARGET = 15.
|
|
354
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
|
|
371
355
|
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
|
372
356
|
MARKETING_VERSION = 1.0;
|
|
373
357
|
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
|
|
@@ -388,7 +372,7 @@
|
|
|
388
372
|
CODE_SIGN_STYLE = Automatic;
|
|
389
373
|
CURRENT_PROJECT_VERSION = 1;
|
|
390
374
|
INFOPLIST_FILE = App/Info.plist;
|
|
391
|
-
IPHONEOS_DEPLOYMENT_TARGET = 15.
|
|
375
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
|
|
392
376
|
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
|
393
377
|
MARKETING_VERSION = 1.0;
|
|
394
378
|
PRODUCT_BUNDLE_IDENTIFIER = com.regula.example.face.capacitor;
|
|
@@ -2,7 +2,7 @@ source "https://github.com/CocoaPods/Specs.git"
|
|
|
2
2
|
|
|
3
3
|
require_relative '../../node_modules/@capacitor/ios/scripts/pods_helpers'
|
|
4
4
|
|
|
5
|
-
platform :ios, '
|
|
5
|
+
platform :ios, '14.0'
|
|
6
6
|
use_frameworks!
|
|
7
7
|
|
|
8
8
|
# workaround to avoid Xcode caching of Pods that requires
|
|
@@ -14,10 +14,6 @@ def capacitor_pods
|
|
|
14
14
|
pod 'Capacitor', :path => '../../node_modules/@capacitor/ios'
|
|
15
15
|
pod 'CapacitorCordova', :path => '../../node_modules/@capacitor/ios'
|
|
16
16
|
pod 'CapacitorApp', :path => '../../node_modules/@capacitor/app'
|
|
17
|
-
pod 'CapacitorDialog', :path => '../../node_modules/@capacitor/dialog'
|
|
18
|
-
pod 'CapacitorStatusBar', :path => '../../node_modules/@capacitor/status-bar'
|
|
19
|
-
pod 'CordovaPlugins', :path => '../capacitor-cordova-ios-plugins'
|
|
20
|
-
pod 'CordovaPluginsResources', :path => '../capacitor-cordova-ios-plugins'
|
|
21
17
|
end
|
|
22
18
|
|
|
23
19
|
target 'App' do
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
PODS:
|
|
2
|
-
- Capacitor (
|
|
2
|
+
- Capacitor (7.0.1):
|
|
3
3
|
- CapacitorCordova
|
|
4
|
-
- CapacitorApp (
|
|
4
|
+
- CapacitorApp (7.0.0):
|
|
5
5
|
- Capacitor
|
|
6
|
-
- CapacitorCordova (
|
|
7
|
-
- CapacitorDialog (
|
|
6
|
+
- CapacitorCordova (7.0.1)
|
|
7
|
+
- CapacitorDialog (7.0.1):
|
|
8
8
|
- Capacitor
|
|
9
|
-
- CapacitorStatusBar (
|
|
9
|
+
- CapacitorStatusBar (7.0.0):
|
|
10
10
|
- Capacitor
|
|
11
|
-
- CordovaPlugins (
|
|
11
|
+
- CordovaPlugins (7.0.1):
|
|
12
12
|
- CapacitorCordova
|
|
13
13
|
- CordovaPluginsResources (0.0.105)
|
|
14
14
|
|
|
@@ -44,14 +44,14 @@ EXTERNAL SOURCES:
|
|
|
44
44
|
:path: "../capacitor-cordova-ios-plugins"
|
|
45
45
|
|
|
46
46
|
SPEC CHECKSUMS:
|
|
47
|
-
Capacitor:
|
|
48
|
-
CapacitorApp:
|
|
49
|
-
CapacitorCordova:
|
|
50
|
-
CapacitorDialog:
|
|
51
|
-
CapacitorStatusBar:
|
|
52
|
-
CordovaPlugins:
|
|
53
|
-
CordovaPluginsResources:
|
|
47
|
+
Capacitor: de199cba6c8b20995428ad0b7cb0bc6ca625ffd4
|
|
48
|
+
CapacitorApp: 9cb31064a6c6bb2b1438583733a7bf45557fc1da
|
|
49
|
+
CapacitorCordova: 63d476958d5022d76f197031e8b7ea3519988c64
|
|
50
|
+
CapacitorDialog: 0e09f242f6c3f5e82e4dc76b20f2a056be57a579
|
|
51
|
+
CapacitorStatusBar: a8c4c83ed2e973bdafb979e80e4b00d027832cb7
|
|
52
|
+
CordovaPlugins: 7a995cd39544bde0fb388160f67dd5719766cf84
|
|
53
|
+
CordovaPluginsResources: 0c211f770ed91763a179ebcd9b9346e120b70662
|
|
54
54
|
|
|
55
|
-
PODFILE CHECKSUM:
|
|
55
|
+
PODFILE CHECKSUM: 43f42e9c9dcf86574f59ab411de6b6382347ed1b
|
|
56
56
|
|
|
57
57
|
COCOAPODS: 1.16.2
|