dynamsoft-capture-vision-react-native 3.0.5100 → 3.0.5201
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 +16 -4
- package/android/src/main/dysJniLibsFor81/debug/arm64-v8a/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor81/debug/armeabi-v7a/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor81/debug/x86/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor81/debug/x86_64/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor81/release/arm64-v8a/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor81/release/armeabi-v7a/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor81/release/x86/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor81/release/x86_64/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor82/debug/arm64-v8a/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor82/debug/armeabi-v7a/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor82/debug/x86/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor82/debug/x86_64/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor82/release/arm64-v8a/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor82/release/armeabi-v7a/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor82/release/x86/librn_dys.so +0 -0
- package/android/src/main/dysJniLibsFor82/release/x86_64/librn_dys.so +0 -0
- package/dynamsoft-capture-vision-react-native.podspec +1 -1
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -68,7 +68,7 @@ android {
|
|
|
68
68
|
versionCode 1
|
|
69
69
|
versionName "1.0"
|
|
70
70
|
|
|
71
|
-
if(versionNumber < 79) {
|
|
71
|
+
if (versionNumber < 79) {
|
|
72
72
|
externalNativeBuild {
|
|
73
73
|
cmake {
|
|
74
74
|
arguments "-DANDROID_STL=c++_shared"
|
|
@@ -80,7 +80,7 @@ android {
|
|
|
80
80
|
abortOnError false
|
|
81
81
|
}
|
|
82
82
|
|
|
83
|
-
if(versionNumber < 79) {
|
|
83
|
+
if (versionNumber < 79) {
|
|
84
84
|
buildFeatures {
|
|
85
85
|
prefab true
|
|
86
86
|
buildConfig true
|
|
@@ -95,14 +95,26 @@ android {
|
|
|
95
95
|
release {
|
|
96
96
|
sourceSets {
|
|
97
97
|
main {
|
|
98
|
-
|
|
98
|
+
if (versionNumber >= 82) {
|
|
99
|
+
jniLibs.srcDirs = ["src/main/dysJniLibsFor82/release"]
|
|
100
|
+
} else if (versionNumber >= 81) {
|
|
101
|
+
jniLibs.srcDirs = ["src/main/dysJniLibsFor81/release"]
|
|
102
|
+
} else {
|
|
103
|
+
jniLibs.srcDirs = ["src/main/dysJniLibs/release"]
|
|
104
|
+
}
|
|
99
105
|
}
|
|
100
106
|
}
|
|
101
107
|
}
|
|
102
108
|
debug {
|
|
103
109
|
sourceSets {
|
|
104
110
|
main {
|
|
105
|
-
|
|
111
|
+
if (versionNumber >= 82) {
|
|
112
|
+
jniLibs.srcDirs = ["src/main/dysJniLibsFor82/debug"]
|
|
113
|
+
} else if (versionNumber >= 81) {
|
|
114
|
+
jniLibs.srcDirs = ["src/main/dysJniLibsFor81/debug"]
|
|
115
|
+
} else {
|
|
116
|
+
jniLibs.srcDirs = ["src/main/dysJniLibs/debug"]
|
|
117
|
+
}
|
|
106
118
|
}
|
|
107
119
|
}
|
|
108
120
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
|
|
|
17
17
|
s.private_header_files = "ios/**/*.h"
|
|
18
18
|
s.requires_arc = true
|
|
19
19
|
|
|
20
|
-
s.dependency "DynamsoftCaptureVisionBundle", ">= 3.0.
|
|
20
|
+
s.dependency "DynamsoftCaptureVisionBundle", ">= 3.0.5200", "< 4.0"
|
|
21
21
|
|
|
22
22
|
install_modules_dependencies(s)
|
|
23
23
|
end
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dynamsoft-capture-vision-react-native",
|
|
3
3
|
"title": "Dynamsoft Capture Vision React Native",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.5201",
|
|
5
5
|
"description": "The Dynamsoft Capture Vision React Native SDK provides a wrapper for building barcode scanning, document scanning and MRZ scanning applications with React Native.",
|
|
6
6
|
"homepage": "https://github.com/Dynamsoft/capture-vision-react-native-samples",
|
|
7
7
|
"main": "src/index.tsx",
|