Skip to content

Commit 39b3b8d

Browse files
authored
fix: use sdk versions from plugin (#108)
1 parent 9c55fd7 commit 39b3b8d

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [3.14.1] - 2024-03-10
9+
10+
- iOS SDK version: 6.8.0
11+
- Android SDK version: 14.0.1
12+
13+
### React Native
14+
15+
#### Fixed
16+
17+
- Take Android targetSdkVersion, compileSdkVersion from plugin only
18+
819
## [3.14.0] - 2024-03-05
920

1021
- iOS SDK version: 6.8.0

android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ def getIntegerDefault(name) {
4040
}
4141

4242
android {
43-
compileSdkVersion getExtOrIntegerDefault("compileSdkVersion")
43+
compileSdkVersion getIntegerDefault("compileSdkVersion")
4444

4545
defaultConfig {
4646
minSdkVersion getIntegerDefault("minSdkVersion")
47-
targetSdkVersion getExtOrIntegerDefault("targetSdkVersion")
47+
targetSdkVersion getIntegerDefault("targetSdkVersion")
4848
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
4949
}
5050
buildTypes {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "freerasp-react-native",
3-
"version": "3.14.0",
3+
"version": "3.14.1",
44
"description": "React Native plugin for improving app security and threat monitoring on Android and iOS mobile devices.",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",

0 commit comments

Comments
 (0)