@regulaforensics/idv 3.2.26-beta → 3.2.59-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/README.md +2 -8
- package/RNIDV.podspec +2 -2
- package/android/build.gradle +1 -10
- package/android/cordova.gradle +1 -1
- package/examples/capacitor/android/build.gradle +1 -1
- package/examples/capacitor/package-lock.json +3350 -0
- package/examples/capacitor/package.json +4 -4
- package/examples/capacitor/src/main.html +8 -29
- package/examples/capacitor/src/main.tsx +115 -1
- package/examples/ionic/README.md +2 -2
- package/examples/ionic/config.xml +1 -0
- package/examples/ionic/package-lock.json +14261 -0
- package/examples/ionic/package.json +7 -7
- package/examples/ionic/src/main.html +8 -29
- package/examples/ionic/src/main.tsx +115 -1
- package/examples/react_native/README.md +2 -2
- package/examples/react_native/package-lock.json +8996 -0
- package/examples/react_native/package.json +4 -4
- package/examples/react_native/scripts/setup.sh +3 -0
- package/examples/react_native/src/main.html +8 -29
- package/examples/react_native/src/main.tsx +115 -1
- package/ios/CVDIDV.swift +6 -50
- package/ios/RNIDV.swift +4 -52
- package/package.json +1 -1
- package/plugin.xml +5 -4
- package/test/json.tsx +40 -0
- package/test/package-lock.json +1 -1
- package/test/test.tsx +12 -2
- package/www/capacitor/config/api_key_connection_config.js +32 -0
- package/www/capacitor/config/credentials_connection_config.js +32 -0
- package/www/capacitor/config/prepare_workflow_config.js +20 -0
- package/www/capacitor/config/start_workflow_config.js +24 -0
- package/www/capacitor/config/token_connection_config.js +20 -0
- package/www/capacitor/index.js +105 -1
- package/www/capacitor/internal/bridge.js +19 -8
- package/www/capacitor/model/workflow.js +28 -0
- package/www/capacitor/model/workflow_result.js +21 -0
- package/www/capacitor/model/workflow_step.js +19 -0
- package/www/cordova.js +455 -10
- package/www/react-native/config/api_key_connection_config.js +32 -0
- package/www/react-native/config/credentials_connection_config.js +32 -0
- package/www/react-native/config/prepare_workflow_config.js +20 -0
- package/www/react-native/config/start_workflow_config.js +24 -0
- package/www/react-native/config/token_connection_config.js +20 -0
- package/www/react-native/index.js +105 -1
- package/www/react-native/internal/bridge.js +19 -8
- package/www/react-native/model/workflow.js +28 -0
- package/www/react-native/model/workflow_result.js +21 -0
- package/www/react-native/model/workflow_step.js +19 -0
- package/www/types/config/api_key_connection_config.d.ts +6 -0
- package/www/types/config/credentials_connection_config.d.ts +6 -0
- package/www/types/config/prepare_workflow_config.d.ts +3 -0
- package/www/types/config/start_workflow_config.d.ts +4 -0
- package/www/types/config/token_connection_config.d.ts +3 -0
- package/www/types/index.d.ts +50 -0
- package/www/types/model/workflow.d.ts +9 -0
- package/www/types/model/workflow_result.d.ts +8 -0
- package/www/types/model/workflow_step.d.ts +6 -0
- package/ios/FlutterIDVPlugin.swift +0 -72
package/README.md
CHANGED
|
@@ -3,16 +3,10 @@ IDV is a framework that unifies access to all Regula products. This plugin makes
|
|
|
3
3
|
|
|
4
4
|
## Android Integration
|
|
5
5
|
|
|
6
|
+
This step is only needed for ***React Native***
|
|
6
7
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
In order to use this plugin, in `android/app/build.gradle` add `kotlin-kapt` plugin and enable `dataBinding`:
|
|
8
|
+
In order to use this plugin, in `android/app/build.gradle` enable `dataBinding`:
|
|
11
9
|
```
|
|
12
|
-
plugins {
|
|
13
|
-
id "kotlin-kapt"
|
|
14
|
-
}
|
|
15
|
-
|
|
16
10
|
android {
|
|
17
11
|
buildFeatures {
|
|
18
12
|
dataBinding true
|
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.
|
|
8
|
+
s.version = '3.2.59-beta'
|
|
9
9
|
s.summary = package['description']
|
|
10
10
|
s.license = package['license']
|
|
11
11
|
|
|
@@ -14,7 +14,7 @@ Pod::Spec.new do |s|
|
|
|
14
14
|
|
|
15
15
|
s.source = { http: "file:#{source}" }
|
|
16
16
|
s.ios.deployment_target = '14.0'
|
|
17
|
-
s.source_files = 'ios/**/*.
|
|
17
|
+
s.source_files = 'ios/**/*.swift'
|
|
18
18
|
s.exclude_files = [ 'ios/CVDIDV.swift' ]
|
|
19
19
|
s.dependency 'IDVSDK', '3.1.1492'
|
|
20
20
|
s.dependency 'React'
|
package/android/build.gradle
CHANGED
|
@@ -3,18 +3,11 @@ apply plugin: 'kotlin-android'
|
|
|
3
3
|
apply plugin: 'kotlin-kapt'
|
|
4
4
|
|
|
5
5
|
android {
|
|
6
|
-
|
|
7
|
-
if (project.android.hasProperty("namespace")) {
|
|
8
|
-
namespace 'com.regula.plugin.idv'
|
|
9
|
-
}
|
|
10
|
-
|
|
6
|
+
namespace 'com.regula.plugin.idv'
|
|
11
7
|
compileSdk 36
|
|
12
8
|
|
|
13
9
|
defaultConfig {
|
|
14
10
|
minSdkVersion 24
|
|
15
|
-
targetSdk 36
|
|
16
|
-
versionCode 1
|
|
17
|
-
versionName "1.0"
|
|
18
11
|
}
|
|
19
12
|
|
|
20
13
|
buildFeatures {
|
|
@@ -31,9 +24,7 @@ rootProject.allprojects {
|
|
|
31
24
|
}
|
|
32
25
|
|
|
33
26
|
dependencies {
|
|
34
|
-
//noinspection GradleDynamicVersion
|
|
35
27
|
implementation 'com.facebook.react:react-native:+'
|
|
36
|
-
//noinspection GradleDependency
|
|
37
28
|
implementation('com.regula.idv:api:3.1.90') {
|
|
38
29
|
transitive = true
|
|
39
30
|
}
|
package/android/cordova.gradle
CHANGED
|
@@ -9,7 +9,7 @@ buildscript {
|
|
|
9
9
|
dependencies {
|
|
10
10
|
classpath 'com.android.tools.build:gradle:8.8.0'
|
|
11
11
|
classpath 'com.google.gms:google-services:4.4.2'
|
|
12
|
-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.
|
|
12
|
+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.20"
|
|
13
13
|
|
|
14
14
|
// NOTE: Do not place your application dependencies here; they belong
|
|
15
15
|
// in the individual module build.gradle files
|