dynamsoft-capture-vision-react-native 2.6.1014 → 2.6.1015

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.
@@ -70,25 +70,6 @@ android {
70
70
  lintOptions {
71
71
  abortOnError false
72
72
  }
73
- // externalNativeBuild {
74
- // cmake {
75
- // path file('CMakeLists.txt')
76
- // version '3.18.1'
77
- // }
78
- // }
79
-
80
- // buildFeatures {
81
- // prefab true
82
- // }
83
-
84
- // packagingOptions {
85
- // excludes = [
86
- // "META-INF",
87
- // "META-INF/**",
88
- // "**/libjsi.so",
89
- // "**/libc++_shared.so"
90
- // ]
91
- // }
92
73
  }
93
74
 
94
75
  repositories {
@@ -124,7 +105,18 @@ dependencies {
124
105
  implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
125
106
  implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3"
126
107
 
127
- implementation "com.dynamsoft:dynamsoftcapturevisionbundle:2.6.1003"
128
- implementation( "com.dynamsoft:dynamsoftbarcodereaderbundle:10.4.3002@aar")
129
- implementation ('com.dynamsoft:mrzscannerbundle:2.0.1@aar')
108
+ implementation("com.dynamsoft:dynamsoftcapturevisionbundle:2.6.1003") {
109
+ exclude(group: "com.dynamsoft", module: "dynamsoftcameraenhancer")
110
+ }
111
+
112
+ implementation "com.dynamsoft:mrzscannerbundle:2.0.1@aar"
113
+
114
+ implementation "com.dynamsoft:dynamsoftbarcodereaderbundle:10.4.3003-beta1@aar"
115
+ implementation "com.dynamsoft:dynamsoftcameraenhancer:4.2.23-beta1@aar"
116
+
117
+ def camerax_version = '1.4.0'
118
+ api "androidx.camera:camera-core:$camerax_version"
119
+ api "androidx.camera:camera-camera2:$camerax_version"
120
+ api "androidx.camera:camera-lifecycle:$camerax_version"
121
+ api "androidx.camera:camera-view:$camerax_version"
130
122
  }
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": "2.6.1014",
4
+ "version": "2.6.1015",
5
5
  "description": "Dynamsoft Capture Vision React Native SDK. The SDK supports barcode decoding, document scanning and MRZ reading.",
6
6
  "homepage": "https://github.com/Dynamsoft/capture-vision-react-native-samples",
7
7
  "main": "src/index.tsx",