@regulaforensics/face-sdk 7.2.468-nightly → 7.2.469
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 +2 -2
- package/android/build.gradle +17 -5
- package/android/cordova.gradle +2 -2
- package/examples/capacitor/android/app/build.gradle +2 -2
- package/examples/capacitor/android/app/src/main/AndroidManifest.xml +2 -2
- package/examples/capacitor/android/app/src/main/java/com/regula/{example/face/capacitor → documentreader/api/androidtest}/MainActivity.java +1 -1
- package/examples/capacitor/android/app/src/main/res/values/strings.xml +7 -0
- package/examples/capacitor/android/variables.gradle +4 -4
- package/examples/capacitor/ios/App/App/Info.plist +1 -1
- package/examples/capacitor/ios/App/App.xcodeproj/project.pbxproj +4 -4
- package/examples/capacitor/package-lock.json +3 -3
- package/examples/capacitor/package.json +2 -2
- package/examples/ionic/config.xml +5 -6
- package/examples/ionic/images/icon.png +0 -0
- package/examples/ionic/package-lock.json +6657 -7190
- package/examples/ionic/package.json +22 -22
- package/examples/ionic/scripts/android.sh +1 -1
- package/examples/ionic/scripts/ios.sh +1 -1
- package/examples/ionic/tsconfig.json +1 -2
- package/examples/react_native/app.config.ts +11 -5
- package/examples/react_native/images/icon/adaptive-icon.png +0 -0
- package/examples/react_native/images/icon/icon.png +0 -0
- package/examples/react_native/package-lock.json +1619 -931
- package/examples/react_native/package.json +14 -14
- package/examples/react_native/scripts/android.sh +0 -1
- package/examples/react_native/scripts/ios.sh +1 -2
- package/package.json +1 -1
- package/plugin.xml +2 -2
- package/test/package-lock.json +1 -1
- package/examples/capacitor/android/app/src/main/res/drawable/ic_launcher_foreground.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable/ic_launcher_round.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable/launcher.xml +0 -4
- package/examples/capacitor/android/app/src/main/res/drawable/launcher_round.xml +0 -4
- package/examples/react_native/images/icon.png +0 -0
|
@@ -6,27 +6,27 @@
|
|
|
6
6
|
"android": "scripts/android.sh"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@
|
|
10
|
-
"@
|
|
11
|
-
"@
|
|
12
|
-
"@
|
|
13
|
-
"@
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"@
|
|
21
|
-
"@
|
|
22
|
-
"@
|
|
23
|
-
"@
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"cordova-
|
|
9
|
+
"@regulaforensics/face-sdk": "7.2.469",
|
|
10
|
+
"@regulaforensics/face-core-basic": "7.2.265",
|
|
11
|
+
"@awesome-cordova-plugins/file": "6.16.0",
|
|
12
|
+
"@awesome-cordova-plugins/camera": "6.16.0",
|
|
13
|
+
"@awesome-cordova-plugins/dialogs": "6.16.0",
|
|
14
|
+
"cordova-ios": "7.1.1",
|
|
15
|
+
"cordova-android": "13.0.0",
|
|
16
|
+
"cordova-plugin-file": "8.1.3",
|
|
17
|
+
"cordova-plugin-camera": "8.0.0",
|
|
18
|
+
"cordova-plugin-dialogs": "2.0.2",
|
|
19
|
+
"cordova-plugin-ionic-webview": "5.0.1",
|
|
20
|
+
"@angular/cli": "19.2.10",
|
|
21
|
+
"@angular/core": "19.2.9",
|
|
22
|
+
"@angular/common": "19.2.9",
|
|
23
|
+
"@angular/forms": "19.2.9",
|
|
24
|
+
"@angular/compiler-cli": "19.2.9",
|
|
25
|
+
"@angular/router": "19.2.9",
|
|
26
|
+
"@angular/platform-browser-dynamic": "19.2.9",
|
|
27
|
+
"@angular-devkit/build-angular": "19.2.15",
|
|
28
|
+
"@ionic/angular": "8.5.6",
|
|
29
|
+
"@ionic/cordova-builders": "12.2.0"
|
|
30
30
|
},
|
|
31
31
|
"cordova": {
|
|
32
32
|
"plugins": {
|
|
@@ -42,4 +42,4 @@
|
|
|
42
42
|
"ios"
|
|
43
43
|
]
|
|
44
44
|
}
|
|
45
|
-
}
|
|
45
|
+
}
|
|
@@ -3,11 +3,11 @@ import { ExpoConfig, ConfigContext } from 'expo/config'
|
|
|
3
3
|
export default ({ config }: ConfigContext): ExpoConfig => ({
|
|
4
4
|
...config,
|
|
5
5
|
slug: 'face-sdk',
|
|
6
|
-
name: '
|
|
6
|
+
name: 'FaceSDK',
|
|
7
7
|
orientation: 'portrait',
|
|
8
|
-
icon: 'images/icon.png',
|
|
8
|
+
icon: './images/icon/icon.png',
|
|
9
9
|
ios: {
|
|
10
|
-
bundleIdentifier: 'com.regula.
|
|
10
|
+
bundleIdentifier: 'com.regula.documentreader.qa',
|
|
11
11
|
infoPlist: {
|
|
12
12
|
NSCameraUsageDescription: 'To use camera',
|
|
13
13
|
NSPhotoLibraryUsageDescription: 'To use gallery'
|
|
@@ -15,7 +15,11 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
|
|
|
15
15
|
appleTeamId: ''
|
|
16
16
|
},
|
|
17
17
|
android: {
|
|
18
|
-
package: 'com.regula.
|
|
18
|
+
package: 'com.regula.documentreader.api.androidtest',
|
|
19
|
+
adaptiveIcon: {
|
|
20
|
+
foregroundImage: './images/icon/adaptive-icon.png',
|
|
21
|
+
backgroundColor: '#ffffff'
|
|
22
|
+
},
|
|
19
23
|
edgeToEdgeEnabled: true
|
|
20
24
|
},
|
|
21
25
|
plugins: [
|
|
@@ -28,7 +32,9 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
|
|
|
28
32
|
{ url: 'https://maven.regulaforensics.com/RegulaDocumentReader/Nightly' },
|
|
29
33
|
{ url: 'https://maven.regulaforensics.com/RegulaDocumentReader/Stage' }
|
|
30
34
|
]
|
|
31
|
-
}
|
|
35
|
+
},
|
|
36
|
+
// This fixes a bug in expo v53. https://github.com/expo/expo/issues/36908
|
|
37
|
+
ios: { networkInspector: false }
|
|
32
38
|
}]
|
|
33
39
|
]
|
|
34
40
|
})
|
|
Binary file
|
|
Binary file
|