@regulaforensics/idv-module-document-reader 3.2.30-beta → 3.2.48-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/android/build.gradle +2 -11
- package/android/cordova.gradle +1 -1
- package/android/src/main/java/com/regula/plugin/idv/module/{RNIDVDocumentReaderPackage.kt → document_reader/RNIDVDocumentReaderPackage.kt} +1 -1
- package/{RNIDVDocumentReaderPackage.podspec → idv-module-document-reader.podspec} +1 -1
- package/package.json +1 -1
- package/plugin.xml +2 -5
package/android/build.gradle
CHANGED
|
@@ -2,18 +2,11 @@ apply plugin: 'com.android.library'
|
|
|
2
2
|
apply plugin: 'kotlin-android'
|
|
3
3
|
|
|
4
4
|
android {
|
|
5
|
-
|
|
6
|
-
if (project.android.hasProperty("namespace")) {
|
|
7
|
-
namespace 'com.regula.plugin.idv.module'
|
|
8
|
-
}
|
|
9
|
-
|
|
5
|
+
namespace 'com.regula.plugin.idv.module.document_reader'
|
|
10
6
|
compileSdk 36
|
|
11
7
|
|
|
12
8
|
defaultConfig {
|
|
13
9
|
minSdkVersion 24
|
|
14
|
-
targetSdk 36
|
|
15
|
-
versionCode 1
|
|
16
|
-
versionName "1.0"
|
|
17
10
|
}
|
|
18
11
|
}
|
|
19
12
|
|
|
@@ -26,10 +19,8 @@ rootProject.allprojects {
|
|
|
26
19
|
}
|
|
27
20
|
|
|
28
21
|
dependencies {
|
|
29
|
-
//noinspection GradleDynamicVersion
|
|
30
22
|
implementation 'com.facebook.react:react-native:+'
|
|
31
|
-
|
|
32
|
-
implementation('com.regula.idv:docreader:3.1.46@aar') {
|
|
23
|
+
implementation('com.regula.idv:docreader:3.2.51@aar') {
|
|
33
24
|
transitive = true
|
|
34
25
|
}
|
|
35
26
|
}
|
package/android/cordova.gradle
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@regulaforensics/idv-module-document-reader",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.48-beta",
|
|
4
4
|
"description": "This is an npm module for Regula IDV Module. Use as dependency with @regulaforensics/idv.",
|
|
5
5
|
"cordova": {
|
|
6
6
|
"id": "@regulaforensics/idv-module-document-reader",
|
package/plugin.xml
CHANGED
|
@@ -1,17 +1,14 @@
|
|
|
1
1
|
<?xml version='1.0' encoding='utf-8'?>
|
|
2
|
-
<plugin id="@regulaforensics/idv-module-document-reader" version="3.2.
|
|
2
|
+
<plugin id="@regulaforensics/idv-module-document-reader" version="3.2.48-beta" xmlns="http://apache.org/cordova/ns/plugins/1.0">
|
|
3
3
|
<name>IDVModule</name>
|
|
4
4
|
|
|
5
5
|
<platform name="ios">
|
|
6
|
-
<config-file target="config.xml" parent="/widget">
|
|
7
|
-
<preference name="deployment-target" value="14.0" />
|
|
8
|
-
</config-file>
|
|
9
6
|
<podspec>
|
|
10
7
|
<config>
|
|
11
8
|
<source url="https://github.com/CocoaPods/Specs.git" />
|
|
12
9
|
</config>
|
|
13
10
|
<pods>
|
|
14
|
-
<pod name="IDVDocumentReader" spec="3.
|
|
11
|
+
<pod name="IDVDocumentReader" spec="3.2.2397" />
|
|
15
12
|
</pods>
|
|
16
13
|
</podspec>
|
|
17
14
|
</platform>
|