Skip to content

Commit 1f8d44a

Browse files
committed
Release 7.19.1
1 parent c2e27b8 commit 1f8d44a

File tree

4 files changed

+19
-7
lines changed

4 files changed

+19
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and 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
277281
Initial 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

android/build.gradle

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff 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
1717
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"
1919

2020
def 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

3946
dependencies {

android/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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)",

0 commit comments

Comments
 (0)