@regulaforensics/face-sdk 7.2.448 → 7.2.452-beta

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.
@@ -6,27 +6,27 @@
6
6
  "android": "scripts/android.sh"
7
7
  },
8
8
  "dependencies": {
9
- "@regulaforensics/face-sdk": "7.2.448",
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",
9
+ "@angular-devkit/build-angular": "^20.3.1",
20
10
  "@angular/cli": "19.2.10",
21
- "@angular/core": "19.2.9",
22
11
  "@angular/common": "19.2.9",
23
- "@angular/forms": "19.2.9",
24
12
  "@angular/compiler-cli": "19.2.9",
25
- "@angular/router": "19.2.9",
13
+ "@angular/core": "19.2.9",
14
+ "@angular/forms": "19.2.9",
26
15
  "@angular/platform-browser-dynamic": "19.2.9",
27
- "@angular-devkit/build-angular": "19.2.15",
16
+ "@angular/router": "19.2.9",
17
+ "@awesome-cordova-plugins/camera": "6.16.0",
18
+ "@awesome-cordova-plugins/dialogs": "6.16.0",
19
+ "@awesome-cordova-plugins/file": "6.16.0",
28
20
  "@ionic/angular": "8.5.6",
29
- "@ionic/cordova-builders": "12.2.0"
21
+ "@ionic/cordova-builders": "12.2.0",
22
+ "@regulaforensics/face-core-basic": "7.2.265",
23
+ "@regulaforensics/face-sdk": "7.2.452-beta",
24
+ "cordova-android": "13.0.0",
25
+ "cordova-ios": "7.1.1",
26
+ "cordova-plugin-camera": "8.0.0",
27
+ "cordova-plugin-dialogs": "2.0.2",
28
+ "cordova-plugin-file": "8.1.3",
29
+ "cordova-plugin-ionic-webview": "5.0.1"
30
30
  },
31
31
  "cordova": {
32
32
  "plugins": {
@@ -42,4 +42,4 @@
42
42
  "ios"
43
43
  ]
44
44
  }
45
- }
45
+ }
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env bash
2
2
 
3
3
  if [[ $npm_config_o || $npm_config_open ]]; then
4
- ionic cordova prepare android
4
+ ionic cordova build android
5
5
  studio platforms/android || open -a 'Android Studio' platforms/android
6
6
  else
7
7
  ionic cordova run android
@@ -2,7 +2,7 @@
2
2
 
3
3
  if [[ $npm_config_o || $npm_config_open ]]; then
4
4
  ionic cordova prepare ios
5
- open platforms/ios/FaceSDK.xcworkspace
5
+ open platforms/ios/Face.xcworkspace
6
6
  else
7
7
  ionic cordova run ios
8
8
  fi
@@ -8,6 +8,7 @@
8
8
  "moduleResolution": "node",
9
9
  "experimentalDecorators": true,
10
10
  "target": "es2022",
11
- "jsx": "react-jsx"
11
+ "jsx": "react-jsx",
12
+ "skipLibCheck": true, // Temp fix for https://github.com/ionic-team/ionic-framework/issues/30650
12
13
  }
13
14
  }
@@ -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: 'FaceSDK',
6
+ name: 'Face',
7
7
  orientation: 'portrait',
8
8
  icon: './images/icon/icon.png',
9
9
  ios: {
10
- bundleIdentifier: 'com.regula.documentreader.qa',
10
+ bundleIdentifier: 'com.regula.example.face.react',
11
11
  infoPlist: {
12
12
  NSCameraUsageDescription: 'To use camera',
13
13
  NSPhotoLibraryUsageDescription: 'To use gallery'
@@ -15,7 +15,7 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
15
15
  appleTeamId: ''
16
16
  },
17
17
  android: {
18
- package: 'com.regula.documentreader.api.androidtest',
18
+ package: 'com.regula.example.face.react',
19
19
  adaptiveIcon: {
20
20
  foregroundImage: './images/icon/adaptive-icon.png',
21
21
  backgroundColor: '#ffffff'
@@ -8,7 +8,7 @@
8
8
  "start": "expo start"
9
9
  },
10
10
  "dependencies": {
11
- "@regulaforensics/face-sdk": "7.2.448",
11
+ "@regulaforensics/face-sdk": "7.2.452-beta",
12
12
  "@regulaforensics/face-core-basic": "7.2.265",
13
13
  "react-native": "0.79.5",
14
14
  "react-native-fs": "2.20.0",
@@ -5,6 +5,7 @@ if [[ $npm_config_o || $npm_config_open ]]; then
5
5
  studio android || open -a 'Android Studio' android
6
6
  # check if metro is already running
7
7
  if ! pgrep -f "expo start" >/dev/null; then
8
+ watchman shutdown-server # fix potential errors
8
9
  npm start
9
10
  fi
10
11
  else
@@ -1,9 +1,10 @@
1
1
  #!/usr/bin/env bash
2
2
 
3
3
  if [[ $npm_config_o || $npm_config_open ]]; then
4
- open ios/FaceSDK.xcworkspace
4
+ open ios/Face.xcworkspace
5
5
  # check if metro is already running
6
6
  if ! pgrep -f "expo start" > /dev/null; then
7
+ watchman shutdown-server # fix potential errors
7
8
  npm start
8
9
  fi
9
10
  else
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@regulaforensics/face-sdk",
3
- "version": "7.2.448",
3
+ "version": "7.2.452-beta",
4
4
  "description": "This is an npm module for Regula Face SDK. It allows you to easily compaire faces using your phone's camera.",
5
5
  "main": "www/react-native/index.js",
6
6
  "module": "www/capacitor/index.js",
package/plugin.xml CHANGED
@@ -1,5 +1,5 @@
1
1
  <?xml version='1.0' encoding='utf-8'?>
2
- <plugin id="@regulaforensics/face-sdk" version="7.2.448" xmlns="http://apache.org/cordova/ns/plugins/1.0">
2
+ <plugin id="@regulaforensics/face-sdk" version="7.2.452-beta" xmlns="http://apache.org/cordova/ns/plugins/1.0">
3
3
  <name>FaceSDK</name>
4
4
  <description>Cordova plugin for Regula Face SDK</description>
5
5
  <license>commercial</license>
@@ -29,7 +29,7 @@
29
29
  <source url="https://github.com/CocoaPods/Specs.git" />
30
30
  </config>
31
31
  <pods>
32
- <pod name="FaceSDK" spec="7.2.3102" />
32
+ <pod name="FaceSDKStage" spec="7.2.3097" />
33
33
  </pods>
34
34
  </podspec>
35
35
  </platform>
@@ -13,7 +13,7 @@
13
13
  },
14
14
  "..": {
15
15
  "name": "@regulaforensics/face-sdk",
16
- "version": "7.2.448",
16
+ "version": "7.2.452-beta",
17
17
  "dev": true,
18
18
  "license": "commercial"
19
19
  },
@@ -1,7 +0,0 @@
1
- <?xml version='1.0' encoding='utf-8'?>
2
- <resources>
3
- <string name="app_name">FaceSDK</string>
4
- <string name="title_activity_main">FaceSDK</string>
5
- <string name="package_name">com.regula.documentreader.api.androidtest</string>
6
- <string name="custom_url_scheme">com.regula.documentreader.api.androidtest</string>
7
- </resources>