scandit-react-native-datacapture-parser 6.15.1 → 6.16.0-beta.2
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
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
def DEFAULT_COMPILE_SDK_VERSION = 32
|
|
2
|
+
def DEFAULT_MIN_SDK_VERSION = 24
|
|
3
|
+
def DEFAULT_TARGET_SDK_VERSION = 32
|
|
4
|
+
|
|
1
5
|
def safeExtGet(prop, fallback) {
|
|
2
6
|
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
|
|
3
7
|
}
|
|
@@ -23,11 +27,11 @@ apply plugin: 'com.android.library'
|
|
|
23
27
|
apply plugin: 'kotlin-android'
|
|
24
28
|
|
|
25
29
|
android {
|
|
26
|
-
compileSdkVersion safeExtGet('compileSdkVersion',
|
|
30
|
+
compileSdkVersion safeExtGet('compileSdkVersion', DEFAULT_COMPILE_SDK_VERSION)
|
|
27
31
|
|
|
28
32
|
defaultConfig {
|
|
29
|
-
minSdkVersion safeExtGet('minSdkVersion',
|
|
30
|
-
targetSdkVersion safeExtGet('targetSdkVersion',
|
|
33
|
+
minSdkVersion safeExtGet('minSdkVersion', DEFAULT_MIN_SDK_VERSION)
|
|
34
|
+
targetSdkVersion safeExtGet('targetSdkVersion', DEFAULT_TARGET_SDK_VERSION)
|
|
31
35
|
versionCode 1
|
|
32
36
|
versionName "1.0"
|
|
33
37
|
}
|
|
@@ -38,11 +42,11 @@ android {
|
|
|
38
42
|
}
|
|
39
43
|
|
|
40
44
|
dependencies {
|
|
41
|
-
def sdk_version = "6.
|
|
45
|
+
def sdk_version = "6.16.0-beta.2"
|
|
42
46
|
|
|
43
47
|
api project(path: ':scandit-react-native-datacapture-core')
|
|
44
48
|
api "com.scandit.datacapture:parser:$sdk_version"
|
|
45
|
-
|
|
49
|
+
|
|
46
50
|
//noinspection GradleDynamicVersion
|
|
47
51
|
implementation 'com.facebook.react:react-native:+' // From node_modules
|
|
48
52
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scandit-react-native-datacapture-parser",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.16.0-beta.2",
|
|
4
4
|
"description": "Scandit Data Capture SDK for React Native",
|
|
5
5
|
"homepage": "https://github.com/Scandit/scandit-react-native-datacapture-parser",
|
|
6
6
|
"main": "js/index.js",
|
|
@@ -29,6 +29,6 @@
|
|
|
29
29
|
"typescript": "^3.8.3"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"scandit-react-native-datacapture-core": "6.
|
|
32
|
+
"scandit-react-native-datacapture-core": "6.16.0-beta.2"
|
|
33
33
|
}
|
|
34
34
|
}
|
|
@@ -9,14 +9,14 @@ Pod::Spec.new do |s|
|
|
|
9
9
|
s.homepage = package["homepage"]
|
|
10
10
|
s.license = package["license"]
|
|
11
11
|
s.authors = { package["author"]["name"] => package["author"]["email"] }
|
|
12
|
-
s.platforms = { :ios => "
|
|
12
|
+
s.platforms = { :ios => "13.0" }
|
|
13
13
|
s.source = { :git => package["homepage"] + ".git", :tag => "#{s.version}" }
|
|
14
14
|
s.swift_version = '4.0'
|
|
15
15
|
s.source_files = "ios/Sources/**/*.{h,m,swift}"
|
|
16
16
|
s.requires_arc = true
|
|
17
17
|
s.module_name = "ScanditDataCaptureParser"
|
|
18
18
|
s.header_dir = "ScanditDataCaptureParser"
|
|
19
|
-
s.dependency 'ScanditParser', '= 6.
|
|
19
|
+
s.dependency 'ScanditParser', '= 6.16.0-beta.2'
|
|
20
20
|
|
|
21
21
|
s.dependency "React"
|
|
22
22
|
s.dependency "scandit-react-native-datacapture-core"
|