@regulaforensics/face-sdk 8.2.911-nightly → 8.2.913-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/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
|
@@ -3,32 +3,30 @@
|
|
|
3
3
|
"scripts": {
|
|
4
4
|
"setup": "scripts/setup.sh",
|
|
5
5
|
"ios": "scripts/ios.sh",
|
|
6
|
-
"android": "scripts/android.sh"
|
|
7
|
-
"postinstall": "patch-package"
|
|
6
|
+
"android": "scripts/android.sh"
|
|
8
7
|
},
|
|
9
8
|
"dependencies": {
|
|
10
|
-
"@angular-devkit/build-angular": "^21.
|
|
11
|
-
"@angular/cli": "^21.
|
|
12
|
-
"@angular/common": "^21.
|
|
13
|
-
"@angular/compiler-cli": "^21.
|
|
14
|
-
"@angular/core": "^21.
|
|
15
|
-
"@angular/forms": "^21.
|
|
16
|
-
"@angular/platform-browser-dynamic": "^21.
|
|
17
|
-
"@angular/router": "^21.
|
|
18
|
-
"@ionic/angular": "^8.7.
|
|
9
|
+
"@angular-devkit/build-angular": "^21.0.5",
|
|
10
|
+
"@angular/cli": "^21.0.5",
|
|
11
|
+
"@angular/common": "^21.0.8",
|
|
12
|
+
"@angular/compiler-cli": "^21.0.8",
|
|
13
|
+
"@angular/core": "^21.0.8",
|
|
14
|
+
"@angular/forms": "^21.0.8",
|
|
15
|
+
"@angular/platform-browser-dynamic": "^21.0.8",
|
|
16
|
+
"@angular/router": "^21.0.8",
|
|
17
|
+
"@ionic/angular": "^8.7.16",
|
|
19
18
|
"@ionic/cordova-builders": "^12.3.0",
|
|
20
19
|
"@awesome-cordova-plugins/camera": "^8.1.0",
|
|
21
20
|
"@awesome-cordova-plugins/dialogs": "^8.1.0",
|
|
22
21
|
"@awesome-cordova-plugins/file": "^8.1.0",
|
|
23
|
-
"@regulaforensics/face-sdk": "8.2.
|
|
24
|
-
"@regulaforensics/face-core-basic": "8.2.
|
|
22
|
+
"@regulaforensics/face-sdk": "8.2.913-rc",
|
|
23
|
+
"@regulaforensics/face-core-basic": "8.2.494-rc",
|
|
25
24
|
"cordova-android": "^14.0.1",
|
|
26
|
-
"cordova-ios": "^
|
|
25
|
+
"cordova-ios": "^7.1.1",
|
|
27
26
|
"cordova-plugin-camera": "^8.0.0",
|
|
28
27
|
"cordova-plugin-dialogs": "^2.0.2",
|
|
29
28
|
"cordova-plugin-file": "^8.1.3",
|
|
30
|
-
"cordova-plugin-ionic-webview": "^5.0.1"
|
|
31
|
-
"patch-package": "^8.0.1"
|
|
29
|
+
"cordova-plugin-ionic-webview": "^5.0.1"
|
|
32
30
|
},
|
|
33
31
|
"cordova": {
|
|
34
32
|
"plugins": {
|