@regulaforensics/face-sdk 8.2.856-rc → 8.2.857-nightly

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.
Files changed (46) hide show
  1. package/RNFaceSDK.podspec +4 -4
  2. package/android/{CVDFaceSDK.kt → CDVFaceSDK.kt} +1 -1
  3. package/android/build.gradle +2 -2
  4. package/android/cordova.gradle +2 -2
  5. package/android/src/main/java/com/regula/plugin/facesdk/JSONConstructor.kt +12 -7
  6. package/examples/capacitor/android/app/build.gradle +2 -2
  7. package/examples/capacitor/android/app/capacitor.build.gradle +2 -3
  8. package/examples/capacitor/android/app/src/main/AndroidManifest.xml +1 -1
  9. package/examples/capacitor/android/build.gradle +3 -3
  10. package/examples/capacitor/android/capacitor.settings.gradle +2 -5
  11. package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  12. package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.properties +1 -1
  13. package/examples/capacitor/android/gradlew +4 -5
  14. package/examples/capacitor/android/gradlew.bat +2 -2
  15. package/examples/capacitor/android/variables.gradle +10 -10
  16. package/examples/capacitor/ios/App/App.xcodeproj/project.pbxproj +20 -4
  17. package/examples/capacitor/ios/App/Podfile +5 -1
  18. package/examples/capacitor/ios/App/Podfile.lock +14 -14
  19. package/examples/capacitor/package-lock.json +811 -847
  20. package/examples/capacitor/package.json +17 -17
  21. package/examples/ionic/images/icon.png +0 -0
  22. package/examples/ionic/package-lock.json +2587 -2373
  23. package/examples/ionic/package.json +16 -14
  24. package/examples/ionic/patches/cordova-plugin-ionic-webview+5.0.1.patch +23 -0
  25. package/examples/ionic/scripts/ios.sh +1 -1
  26. package/examples/react_native/package-lock.json +1168 -1450
  27. package/examples/react_native/package.json +2 -2
  28. package/ios/CDVFaceSDK.swift +42 -0
  29. package/ios/Config.swift +242 -0
  30. package/ios/Decoder.swift +934 -0
  31. package/ios/Main.swift +191 -0
  32. package/ios/RNFaceSDK.m +7 -39
  33. package/ios/RNFaceSDK.swift +42 -0
  34. package/ios/Utils.swift +82 -0
  35. package/package.json +1 -1
  36. package/plugin.xml +11 -13
  37. package/test/package-lock.json +1 -1
  38. package/ios/CVDFaceSDK.h +0 -7
  39. package/ios/CVDFaceSDK.m +0 -43
  40. package/ios/RFSWConfig.h +0 -27
  41. package/ios/RFSWConfig.m +0 -199
  42. package/ios/RFSWJSONConstructor.h +0 -135
  43. package/ios/RFSWJSONConstructor.m +0 -985
  44. package/ios/RFSWMain.h +0 -24
  45. package/ios/RFSWMain.m +0 -381
  46. package/ios/RNFaceSDK.h +0 -8
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.856-rc'
8
+ s.version = '8.2.857-nightly'
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 = 'ios/**/*.{h,m}'
18
- s.exclude_files = [ 'ios/CVDFaceSDK.h', 'ios/CVDFaceSDK.m' ]
19
- s.dependency 'FaceSDKStage', '8.2.3864'
17
+ s.source_files = [ 'ios/**/*.swift', 'ios/**/RN*.m' ]
18
+ s.exclude_files = [ 'ios/CDVFaceSDK.swift' ]
19
+ s.dependency 'FaceSDKNightly', '8.2.3862'
20
20
  s.dependency 'React'
21
21
  end
@@ -32,7 +32,7 @@ fun <T> argsNullable(index: Int): T? = if (args.get(index).toString() != "null")
32
32
  args.get(index) as T
33
33
  } else null
34
34
 
35
- class CVDFaceSDK : CordovaPlugin() {
35
+ class CDVFaceSDK : CordovaPlugin() {
36
36
  init {
37
37
  binding = this
38
38
  }
@@ -20,7 +20,7 @@ android {
20
20
  rootProject.allprojects {
21
21
  repositories {
22
22
  maven {
23
- url "https://maven.regulaforensics.com/RegulaDocumentReader/Stage"
23
+ url "https://maven.regulaforensics.com/RegulaDocumentReader/Nightly"
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.4531'){
32
+ implementation('com.regula.face:api:8.2.4530'){
33
33
  transitive = true
34
34
  }
35
35
  }
@@ -6,13 +6,13 @@ android {
6
6
 
7
7
  repositories {
8
8
  maven {
9
- url "https://maven.regulaforensics.com/RegulaDocumentReader/Stage"
9
+ url "https://maven.regulaforensics.com/RegulaDocumentReader/Nightly"
10
10
  }
11
11
  }
12
12
 
13
13
  dependencies {
14
14
  //noinspection GradleDependency
15
- implementation('com.regula.face:api:8.2.4531'){
15
+ implementation('com.regula.face:api:8.2.4530'){
16
16
  transitive = true
17
17
  }
18
18
  }
@@ -636,13 +636,18 @@ 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
- 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
- )
639
+ val scenario = it.getStringOrNull("scenario")
640
+ val config = detectFacesConfigFromJSON(it.getJSONObjectOrNull("configuration"))
641
+ val tag = it.getStringOrNull("tag")
642
+
643
+ scenario?.let { scenario ->
644
+ DetectFacesRequest::class.java.getDeclaredConstructor(
645
+ Bitmap::class.java,
646
+ String::class.java,
647
+ DetectFacesConfiguration::class.java,
648
+ String::class.java
649
+ ).instantiate(image, scenario, null, tag)
650
+ } ?: DetectFacesRequest(image, config, tag)
646
651
  }
647
652
 
648
653
  fun generateDetectFacesRequest(it: DetectFacesRequest) = mapOf(
@@ -1,7 +1,7 @@
1
1
  apply plugin: 'com.android.application'
2
2
 
3
3
  android {
4
- namespace "com.regula.example.face.capacitor"
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 '!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~'
15
+ ignoreAssetsPattern = '!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~'
16
16
  }
17
17
  }
18
18
  buildTypes {
@@ -10,11 +10,10 @@ 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-haptics')
14
- implementation project(':capacitor-keyboard')
13
+ implementation project(':capacitor-dialog')
15
14
  implementation project(':capacitor-status-bar')
16
- implementation "androidx.core:core:1.6.+"
17
15
  implementation "androidx.webkit:webkit:1.4.0"
16
+ implementation "androidx.core:core:1.6.+"
18
17
  }
19
18
 
20
19
  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|density"
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.8.0'
11
- classpath 'com.google.gms:google-services:4.4.2'
12
- classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.25"
10
+ classpath 'com.android.tools.build:gradle:8.13.0'
11
+ classpath 'com.google.gms:google-services:4.4.4'
12
+ classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.20"
13
13
 
14
14
  // NOTE: Do not place your application dependencies here; they belong
15
15
  // in the individual module build.gradle files
@@ -5,11 +5,8 @@ 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-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')
8
+ include ':capacitor-dialog'
9
+ project(':capacitor-dialog').projectDir = new File('../node_modules/@capacitor/dialog/android')
13
10
 
14
11
  include ':capacitor-status-bar'
15
12
  project(':capacitor-status-bar').projectDir = new File('../node_modules/@capacitor/status-bar/android')
@@ -1,6 +1,6 @@
1
1
  distributionBase=GRADLE_USER_HOME
2
2
  distributionPath=wrapper/dists
3
- distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
3
+ distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-all.zip
4
4
  networkTimeout=10000
5
5
  validateDistributionUrl=true
6
6
  zipStoreBase=GRADLE_USER_HOME
@@ -86,8 +86,7 @@ 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
90
- ' "$PWD" ) || exit
89
+ APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
91
90
 
92
91
  # Use the maximum available, or set MAX_FD != -1 to use that value.
93
92
  MAX_FD=maximum
@@ -115,7 +114,7 @@ case "$( uname )" in #(
115
114
  NONSTOP* ) nonstop=true ;;
116
115
  esac
117
116
 
118
- CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
117
+ CLASSPATH="\\\"\\\""
119
118
 
120
119
 
121
120
  # Determine the Java command to use to start the JVM.
@@ -206,7 +205,7 @@ fi
206
205
  DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
207
206
 
208
207
  # Collect all arguments for the java command:
209
- # * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
208
+ # * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
210
209
  # and any embedded shellness will be escaped.
211
210
  # * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
212
211
  # treated as '${Hostname}' itself on the command line.
@@ -214,7 +213,7 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
214
213
  set -- \
215
214
  "-Dorg.gradle.appname=$APP_BASE_NAME" \
216
215
  -classpath "$CLASSPATH" \
217
- org.gradle.wrapper.GradleWrapperMain \
216
+ -jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
218
217
  "$@"
219
218
 
220
219
  # 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=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
73
+ set CLASSPATH=
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%" org.gradle.wrapper.GradleWrapperMain %*
77
+ "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
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.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'
5
+ androidxActivityVersion = '1.11.0'
6
+ androidxAppCompatVersion = '1.7.1'
7
+ androidxCoordinatorLayoutVersion = '1.3.0'
8
+ androidxCoreVersion = '1.17.0'
9
+ androidxFragmentVersion = '1.8.9'
10
+ coreSplashScreenVersion = '1.2.0'
11
+ androidxWebkitVersion = '1.14.0'
12
12
  junitVersion = '4.13.2'
13
- androidxJunitVersion = '1.2.1'
14
- androidxEspressoCoreVersion = '3.6.1'
15
- cordovaAndroidVersion = '14.0.0'
13
+ androidxJunitVersion = '1.3.0'
14
+ androidxEspressoCoreVersion = '3.7.0'
15
+ cordovaAndroidVersion = '14.0.1'
16
16
  }
@@ -108,6 +108,7 @@
108
108
  504EC3011FED79650016851F /* Frameworks */,
109
109
  504EC3021FED79650016851F /* Resources */,
110
110
  9592DBEFFC6D2A0C8D5DEB22 /* [CP] Embed Pods Frameworks */,
111
+ 7D56AA6606A87F8FA13FB093 /* [CP] Copy Pods Resources */,
111
112
  );
112
113
  buildRules = (
113
114
  );
@@ -187,6 +188,21 @@
187
188
  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";
188
189
  showEnvVarsInLog = 0;
189
190
  };
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
+ };
190
206
  9592DBEFFC6D2A0C8D5DEB22 /* [CP] Embed Pods Frameworks */ = {
191
207
  isa = PBXShellScriptBuildPhase;
192
208
  buildActionMask = 2147483647;
@@ -283,7 +299,7 @@
283
299
  GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
284
300
  GCC_WARN_UNUSED_FUNCTION = YES;
285
301
  GCC_WARN_UNUSED_VARIABLE = YES;
286
- IPHONEOS_DEPLOYMENT_TARGET = 14.0;
302
+ IPHONEOS_DEPLOYMENT_TARGET = 15.0;
287
303
  MTL_ENABLE_DEBUG_INFO = YES;
288
304
  ONLY_ACTIVE_ARCH = YES;
289
305
  SDKROOT = iphoneos;
@@ -334,7 +350,7 @@
334
350
  GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
335
351
  GCC_WARN_UNUSED_FUNCTION = YES;
336
352
  GCC_WARN_UNUSED_VARIABLE = YES;
337
- IPHONEOS_DEPLOYMENT_TARGET = 14.0;
353
+ IPHONEOS_DEPLOYMENT_TARGET = 15.0;
338
354
  MTL_ENABLE_DEBUG_INFO = NO;
339
355
  SDKROOT = iphoneos;
340
356
  SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
@@ -351,7 +367,7 @@
351
367
  CODE_SIGN_STYLE = Automatic;
352
368
  CURRENT_PROJECT_VERSION = 1;
353
369
  INFOPLIST_FILE = App/Info.plist;
354
- IPHONEOS_DEPLOYMENT_TARGET = 15.6;
370
+ IPHONEOS_DEPLOYMENT_TARGET = 15.0;
355
371
  LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
356
372
  MARKETING_VERSION = 1.0;
357
373
  OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
@@ -372,7 +388,7 @@
372
388
  CODE_SIGN_STYLE = Automatic;
373
389
  CURRENT_PROJECT_VERSION = 1;
374
390
  INFOPLIST_FILE = App/Info.plist;
375
- IPHONEOS_DEPLOYMENT_TARGET = 15.6;
391
+ IPHONEOS_DEPLOYMENT_TARGET = 15.0;
376
392
  LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
377
393
  MARKETING_VERSION = 1.0;
378
394
  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, '14.0'
5
+ platform :ios, '15.0'
6
6
  use_frameworks!
7
7
 
8
8
  # workaround to avoid Xcode caching of Pods that requires
@@ -14,6 +14,10 @@ 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'
17
21
  end
18
22
 
19
23
  target 'App' do
@@ -1,14 +1,14 @@
1
1
  PODS:
2
- - Capacitor (7.0.1):
2
+ - Capacitor (8.0.2):
3
3
  - CapacitorCordova
4
- - CapacitorApp (7.0.0):
4
+ - CapacitorApp (8.0.0):
5
5
  - Capacitor
6
- - CapacitorCordova (7.0.1)
7
- - CapacitorDialog (7.0.1):
6
+ - CapacitorCordova (8.0.2)
7
+ - CapacitorDialog (8.0.0):
8
8
  - Capacitor
9
- - CapacitorStatusBar (7.0.0):
9
+ - CapacitorStatusBar (8.0.0):
10
10
  - Capacitor
11
- - CordovaPlugins (7.0.1):
11
+ - CordovaPlugins (8.0.2):
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: de199cba6c8b20995428ad0b7cb0bc6ca625ffd4
48
- CapacitorApp: 9cb31064a6c6bb2b1438583733a7bf45557fc1da
49
- CapacitorCordova: 63d476958d5022d76f197031e8b7ea3519988c64
50
- CapacitorDialog: 0e09f242f6c3f5e82e4dc76b20f2a056be57a579
51
- CapacitorStatusBar: a8c4c83ed2e973bdafb979e80e4b00d027832cb7
52
- CordovaPlugins: 7a995cd39544bde0fb388160f67dd5719766cf84
53
- CordovaPluginsResources: 0c211f770ed91763a179ebcd9b9346e120b70662
47
+ Capacitor: 2b79172ad27f3be2d103cce88b8eb9803fdcc744
48
+ CapacitorApp: 3963a84197280757b84f126afd1520a85ae3b092
49
+ CapacitorCordova: 921bdb690ebe82421b24fce45552fd3dea2ae43a
50
+ CapacitorDialog: 3721e40dd075f590328166c29b4e982dbeedeb56
51
+ CapacitorStatusBar: 312e2e67928dfe9514c4a8916a1fd610552f5f35
52
+ CordovaPlugins: abfe2fc4dd659536d5a76f896dd6f4a5276c976d
53
+ CordovaPluginsResources: da93847212bf7b16ba770e4d6c3e7dba820174c7
54
54
 
55
- PODFILE CHECKSUM: 43f42e9c9dcf86574f59ab411de6b6382347ed1b
55
+ PODFILE CHECKSUM: 33138b6aebc6e5be89605d3f182bfe1360db615f
56
56
 
57
57
  COCOAPODS: 1.16.2