@regulaforensics/idv 3.2.68-beta → 3.2.69-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.
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.2.68-beta'
8
+ s.version = '3.2.69-beta'
9
9
  s.summary = package['description']
10
10
  s.license = package['license']
11
11
 
@@ -23,4 +23,7 @@
23
23
 
24
24
  <uses-permission android:name="android.permission.NFC" />
25
25
  <uses-permission android:name="android.permission.INTERNET" />
26
+ <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
27
+ <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
28
+
26
29
  </manifest>
@@ -22,17 +22,11 @@
22
22
  <string>$(CURRENT_PROJECT_VERSION)</string>
23
23
  <key>LSRequiresIPhoneOS</key>
24
24
  <true/>
25
- <key>NFCReaderUsageDescription</key>
26
- <string>To use NFC</string>
27
25
  <key>NSAppTransportSecurity</key>
28
26
  <dict>
29
27
  <key>NSAllowsArbitraryLoads</key>
30
28
  <true/>
31
29
  </dict>
32
- <key>NSCameraUsageDescription</key>
33
- <string></string>
34
- <key>NSPhotoLibraryUsageDescription</key>
35
- <string></string>
36
30
  <key>UILaunchStoryboardName</key>
37
31
  <string>LaunchScreen</string>
38
32
  <key>UIMainStoryboardFile</key>
@@ -51,6 +45,14 @@
51
45
  </array>
52
46
  <key>UIViewControllerBasedStatusBarAppearance</key>
53
47
  <true/>
48
+ <key>NSCameraUsageDescription</key>
49
+ <string></string>
50
+ <key>NSPhotoLibraryUsageDescription</key>
51
+ <string></string>
52
+ <key>NSLocationWhenInUseUsageDescription</key>
53
+ <string>To use location</string>
54
+ <key>NFCReaderUsageDescription</key>
55
+ <string>To use NFC</string>
54
56
  <key>com.apple.developer.nfc.readersession.iso7816.select-identifiers</key>
55
57
  <array>
56
58
  <string>A0000002471001</string>
@@ -6,7 +6,7 @@
6
6
  "android": "scripts/android.sh"
7
7
  },
8
8
  "dependencies": {
9
- "@regulaforensics/idv": "3.2.68-beta",
9
+ "@regulaforensics/idv": "3.2.69-beta",
10
10
  "@regulaforensics/document-reader": "9.1.505",
11
11
  "@regulaforensics/face-sdk": "7.2.691",
12
12
  "@regulaforensics/document-reader-core-fullauthrfid": "9.1.1281",
@@ -14,6 +14,8 @@
14
14
  <preference name="GradlePluginKotlinVersion" value="2.1.20" />
15
15
  <config-file parent="/*" target="AndroidManifest.xml">
16
16
  <uses-permission android:name="android.permission.NFC" />
17
+ <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
18
+ <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
17
19
  </config-file>
18
20
  <edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application">
19
21
  <application android:usesCleartextTraffic="true" />
@@ -32,6 +34,9 @@
32
34
  <config-file parent="NSPhotoLibraryUsageDescription" target="*-Info.plist">
33
35
  <string>To pick images</string>
34
36
  </config-file>
37
+ <config-file parent="NSLocationWhenInUseUsageDescription" target="*-Info.plist">
38
+ <string>To use location</string>
39
+ </config-file>
35
40
  <config-file parent="NFCReaderUsageDescription" target="*-Info.plist">
36
41
  <string>To use NFC</string>
37
42
  </config-file>
@@ -16,7 +16,7 @@
16
16
  "@angular/router": "^21.0.2",
17
17
  "@ionic/angular": "^8.7.11",
18
18
  "@ionic/cordova-builders": "^12.3.0",
19
- "@regulaforensics/idv": "3.2.68-beta",
19
+ "@regulaforensics/idv": "3.2.69-beta",
20
20
  "@regulaforensics/document-reader": "9.1.505",
21
21
  "@regulaforensics/face-sdk": "7.2.691",
22
22
  "@regulaforensics/document-reader-core-fullauthrfid": "9.1.1281",
@@ -11,6 +11,7 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
11
11
  infoPlist: {
12
12
  NSCameraUsageDescription: 'To use camera',
13
13
  NSPhotoLibraryUsageDescription: 'To use gallery',
14
+ NSLocationWhenInUseUsageDescription: 'To use location',
14
15
  NFCReaderUsageDescription: 'To use NFC',
15
16
  'com.apple.developer.nfc.readersession.iso7816.select-identifiers': [
16
17
  'A0000002471001',
@@ -27,7 +28,11 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
27
28
  },
28
29
  android: {
29
30
  package: 'com.regula.example.idv.react',
30
- permissions: ['android.permission.NFC'],
31
+ permissions: [
32
+ 'android.permission.NFC',
33
+ 'android.permission.ACCESS_COARSE_LOCATION',
34
+ 'android.permission.ACCESS_FINE_LOCATION'
35
+ ],
31
36
  edgeToEdgeEnabled: true
32
37
  },
33
38
  plugins: [
@@ -8,7 +8,7 @@
8
8
  "start": "expo start"
9
9
  },
10
10
  "dependencies": {
11
- "@regulaforensics/idv": "3.2.68-beta",
11
+ "@regulaforensics/idv": "3.2.69-beta",
12
12
  "@regulaforensics/document-reader": "9.1.505",
13
13
  "@regulaforensics/face-sdk": "7.2.691",
14
14
  "@regulaforensics/document-reader-core-fullauthrfid": "9.1.1281",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@regulaforensics/idv",
3
- "version": "3.2.68-beta",
3
+ "version": "3.2.69-beta",
4
4
  "description": "This is an npm module for Regula IDV, which unifies access to all Regula products. This plugin makes possible to use it with react-native, cordova and capacitor applications. Supports Android and iOS.",
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/idv" version="3.2.68-beta" xmlns="http://apache.org/cordova/ns/plugins/1.0">
2
+ <plugin id="@regulaforensics/idv" version="3.2.69-beta" xmlns="http://apache.org/cordova/ns/plugins/1.0">
3
3
  <name>IDV</name>
4
4
  <description>Cordova plugin for Regula IDV</description>
5
5
  <license>commercial</license>
@@ -13,7 +13,7 @@
13
13
  },
14
14
  "..": {
15
15
  "name": "@regulaforensics/idv",
16
- "version": "3.2.68-beta",
16
+ "version": "3.2.69-beta",
17
17
  "dev": true,
18
18
  "license": "commercial"
19
19
  },