hypertrack-sdk-react-native 7.19.0 → 7.19.1-rc.1
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 +12 -5
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -7,15 +7,15 @@ buildscript {
|
|
|
7
7
|
google()
|
|
8
8
|
}
|
|
9
9
|
dependencies {
|
|
10
|
-
classpath 'com.android.tools.build:gradle:
|
|
10
|
+
classpath 'com.android.tools.build:gradle:7.1.2'
|
|
11
11
|
}
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
def DEFAULT_COMPILE_SDK_VERSION =
|
|
15
|
-
def DEFAULT_BUILD_TOOLS_VERSION = "
|
|
16
|
-
def DEFAULT_MIN_SDK_VERSION =
|
|
14
|
+
def DEFAULT_COMPILE_SDK_VERSION = 31
|
|
15
|
+
def DEFAULT_BUILD_TOOLS_VERSION = "31.0.0"
|
|
16
|
+
def DEFAULT_MIN_SDK_VERSION = 23
|
|
17
17
|
def DEFAULT_TARGET_SDK_VERSION = 30
|
|
18
|
-
def DEFAULT_HYPERTRACK_SDK_VERSION = "6.2.0"
|
|
18
|
+
def DEFAULT_HYPERTRACK_SDK_VERSION = "6.2.0-rn.1"
|
|
19
19
|
|
|
20
20
|
def HYPERTRACK_SDK_VERSION = rootProject.hasProperty('hypertrackSdkVersion') ? rootProject.hypertrackSdkVersion : DEFAULT_HYPERTRACK_SDK_VERSION
|
|
21
21
|
|
|
@@ -34,6 +34,13 @@ android {
|
|
|
34
34
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
|
+
|
|
38
|
+
packagingOptions {
|
|
39
|
+
pickFirst 'lib/x86/libc++_shared.so'
|
|
40
|
+
pickFirst 'lib/x86_64/libc++_shared.so'
|
|
41
|
+
pickFirst 'lib/armeabi-v7a/libc++_shared.so'
|
|
42
|
+
pickFirst 'lib/arm64-v8a/libc++_shared.so'
|
|
43
|
+
}
|
|
37
44
|
}
|
|
38
45
|
|
|
39
46
|
dependencies {
|
package/package.json
CHANGED