@regulaforensics/idv 3.8.126-rc → 3.8.130

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/RNIDV.podspec CHANGED
@@ -5,7 +5,7 @@ source = File.join(__dir__, 'ios')
5
5
 
6
6
  Pod::Spec.new do |s|
7
7
  s.name = 'RNIDV'
8
- s.version = '3.8.126-rc'
8
+ s.version = '3.8.130'
9
9
  s.summary = package['description']
10
10
  s.license = package['license']
11
11
 
@@ -16,6 +16,6 @@ Pod::Spec.new do |s|
16
16
  s.ios.deployment_target = '14.0'
17
17
  s.source_files = [ 'ios/**/*.swift', 'ios/**/RN*.m' ]
18
18
  s.exclude_files = [ 'ios/CDVIDV.swift' ]
19
- s.dependency 'IDVSDKStage', '3.8.1939'
19
+ s.dependency 'IDVSDK', '3.8.1948'
20
20
  s.dependency 'React'
21
21
  end
@@ -18,14 +18,14 @@ android {
18
18
  rootProject.allprojects {
19
19
  repositories {
20
20
  maven {
21
- url "https://maven.regulaforensics.com/RegulaDocumentReader/Stage"
21
+ url "https://maven.regulaforensics.com/RegulaDocumentReader"
22
22
  }
23
23
  }
24
24
  }
25
25
 
26
26
  dependencies {
27
27
  implementation 'com.facebook.react:react-native:+'
28
- implementation('com.regula.idv:api:3.6.310') {
28
+ implementation('com.regula.idv:api:3.8.314') {
29
29
  transitive = true
30
30
  }
31
31
  }
@@ -9,12 +9,12 @@ android {
9
9
 
10
10
  repositories {
11
11
  maven {
12
- url "https://maven.regulaforensics.com/RegulaDocumentReader/Stage"
12
+ url "https://maven.regulaforensics.com/RegulaDocumentReader"
13
13
  }
14
14
  }
15
15
 
16
16
  dependencies {
17
- implementation('com.regula.idv:api:3.6.310') {
17
+ implementation('com.regula.idv:api:3.8.314') {
18
18
  transitive = true
19
19
  }
20
20
  }
@@ -12,4 +12,4 @@
12
12
  7. After initialization choose **General KYC - AP** from workflows list and click **Start Workflow** button.
13
13
  8. Complete workflow and get your session id.
14
14
 
15
- **Note**: `npm run ios`/`npm run android` is just one way of running the app. You can also pass `-o` or `--open` argument to the command, and this will open Xcode/Android Studio, then run the app directly from the IDE. Overall, this is a more consistent way, so if you're having troubles running the app from terminal, try running it from the IDE.
15
+ **Note**: `npm run ios`/`npm run android` is just one way of running the app. You can also pass `-- -o` or `-- --open` argument to the command, and this will open Xcode/Android Studio, then run the app directly from the IDE. Overall, this is a more consistent way, so if you're having troubles running the app from terminal, try running it from the IDE.
@@ -6,11 +6,11 @@
6
6
  "android": "scripts/android.sh"
7
7
  },
8
8
  "dependencies": {
9
- "@regulaforensics/idv": "3.8.126-rc",
10
- "@regulaforensics/idv-module-document-reader": "9.6.106-rc",
11
- "@regulaforensics/idv-module-face": "9.6.107-rc",
12
- "@regulaforensics/document-reader-core-fullauthrfid": "9.7.2474-rc",
13
- "@regulaforensics/face-core-basic": "8.3.622-rc",
9
+ "@regulaforensics/idv": "3.8.130",
10
+ "@regulaforensics/idv-module-document-reader": "3.8.108",
11
+ "@regulaforensics/idv-module-face": "3.8.109",
12
+ "@regulaforensics/document-reader-core-fullauthrfid": "9.6.2444",
13
+ "@regulaforensics/face-core-basic": "8.2.521",
14
14
  "@capacitor/cli": "^8.0.0",
15
15
  "@capacitor/core": "^8.0.0",
16
16
  "@capacitor/app": "^8.0.0",
@@ -1,9 +1,11 @@
1
1
  #!/usr/bin/env bash
2
2
  set -e
3
3
 
4
- if [[ $npm_config_o || $npm_config_open ]]; then
4
+ if [[ " $* " == *" --open "* ]] || [[ " $* " == *" -o "* ]]; then
5
5
  ionic cap sync android
6
6
  open -a 'Android Studio' android
7
7
  else
8
8
  ionic cap run android
9
9
  fi
10
+
11
+ exit 0
@@ -1,8 +1,10 @@
1
1
  #!/usr/bin/env bash
2
2
  set -e
3
3
 
4
- if [[ $npm_config_o || $npm_config_open ]]; then
4
+ if [[ " $* " == *" --open "* ]] || [[ " $* " == *" -o "* ]]; then
5
5
  ionic cap run ios --open
6
6
  else
7
7
  ionic cap run ios
8
8
  fi
9
+
10
+ exit 0
@@ -12,3 +12,5 @@ cp public/assets/regula.license ios/App/App/
12
12
  cp public/assets/db.dat ios/App/App/
13
13
  cp public/assets/regula.license android/app/src/main/assets/Regula/
14
14
  cp public/assets/db.dat android/app/src/main/assets/Regula/
15
+
16
+ exit 0
@@ -12,4 +12,4 @@
12
12
  7. After initialization choose **General KYC - AP** from workflows list and click **Start Workflow** button.
13
13
  8. Complete workflow and get your session id.
14
14
 
15
- **Note**: `npm run ios`/`npm run android` is just one way of running the app. You can also pass `-o` or `--open` argument to the command, and this will open Xcode/Android Studio, then run the app directly from the IDE. Overall, this is a more consistent way, so if you're having troubles running the app from terminal, try running it from the IDE.
15
+ **Note**: `npm run ios`/`npm run android` is just one way of running the app. You can also pass `-- -o` or `-- --open` argument to the command, and this will open Xcode/Android Studio, then run the app directly from the IDE. Overall, this is a more consistent way, so if you're having troubles running the app from terminal, try running it from the IDE.
@@ -8,10 +8,7 @@
8
8
  <resource-file src="assets/db.dat" target="app/src/main/assets/Regula/db.dat" />
9
9
  <preference name="orientation" value="portrait" />
10
10
  <preference name="AndroidEdgeToEdge" value="true" />
11
- <preference name="android-minSdkVersion" value="24" />
12
- <preference name="android-targetSdkVersion" value="36" />
13
11
  <preference name="GradlePluginKotlinEnabled" value="true" />
14
- <preference name="GradlePluginKotlinVersion" value="2.1.20" />
15
12
  <config-file parent="/*" target="AndroidManifest.xml">
16
13
  <uses-permission android:name="android.permission.NFC" />
17
14
  <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />