File tree Expand file tree Collapse file tree 4 files changed +19
-7
lines changed
Expand file tree Collapse file tree 4 files changed +19
-7
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ 7.19.1] - 2022-07-27
8+ ### Fixed
9+ - Fixed React Native C++ incompatibility issue with Android SDK 6.2.0
10+
711## [ 7.19.0] - 2022-07-18
812### Changed
913- Updated HyperTrack Android SDK to 6.2.0 and iOS SDK to 4.12.4
@@ -277,6 +281,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
277281Initial release.
278282
279283
284+ [ 7.19.1 ] : https://github.com/hypertrack/sdk-react-native/releases/tag/7.19.1
280285[ 7.19.0 ] : https://github.com/hypertrack/sdk-react-native/releases/tag/7.19.0
281286[ 7.18.4 ] : https://github.com/hypertrack/sdk-react-native/releases/tag/7.18.4
282287[ 7.18.3 ] : https://github.com/hypertrack/sdk-react-native/releases/tag/7.18.3
Original file line number Diff line number Diff line change @@ -7,15 +7,15 @@ buildscript {
77 google()
88 }
99 dependencies {
10- classpath ' com.android.tools.build:gradle:3.4 .2'
10+ classpath ' com.android.tools.build:gradle:7.1 .2'
1111 }
1212}
1313
14- def DEFAULT_COMPILE_SDK_VERSION = 30
15- def DEFAULT_BUILD_TOOLS_VERSION = " 30 .0.2 "
16- def DEFAULT_MIN_SDK_VERSION = 21
14+ def DEFAULT_COMPILE_SDK_VERSION = 31
15+ def DEFAULT_BUILD_TOOLS_VERSION = " 31 .0.0 "
16+ def DEFAULT_MIN_SDK_VERSION = 23
1717def 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 "
1919
2020def HYPERTRACK_SDK_VERSION = rootProject. hasProperty(' hypertrackSdkVersion' ) ? rootProject. hypertrackSdkVersion : DEFAULT_HYPERTRACK_SDK_VERSION
2121
@@ -34,6 +34,13 @@ android {
3434 proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
3535 }
3636 }
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+ }
3744}
3845
3946dependencies {
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33distributionPath =wrapper/dists
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
6- distributionUrl =https\://services.gradle.org/distributions/gradle-5.4.1 -all.zip
6+ distributionUrl =https\://services.gradle.org/distributions/gradle-7.2 -all.zip
Original file line number Diff line number Diff line change 11{
22 "name" : " hypertrack-sdk-react-native" ,
3- "version" : " 7.19.0 " ,
3+ "version" : " 7.19.1 " ,
44 "description" : " React Native module for a HyperTrack SDK" ,
55 "main" : " ./js/index.js" ,
66 "author" :
" HyperTrack <[email protected] > (https://hypertrack.com)" ,
You can’t perform that action at this time.
0 commit comments