diff --git a/CHANGELOG.md b/CHANGELOG.md index 3932d2e..2ea0559 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.14.1] - 2024-03-10 + +- iOS SDK version: 6.8.0 +- Android SDK version: 14.0.1 + +### React Native + +#### Fixed + +- Take Android targetSdkVersion, compileSdkVersion from plugin only + ## [3.14.0] - 2024-03-05 - iOS SDK version: 6.8.0 diff --git a/android/build.gradle b/android/build.gradle index e49f910..babdd25 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -40,11 +40,11 @@ def getIntegerDefault(name) { } android { - compileSdkVersion getExtOrIntegerDefault("compileSdkVersion") + compileSdkVersion getIntegerDefault("compileSdkVersion") defaultConfig { minSdkVersion getIntegerDefault("minSdkVersion") - targetSdkVersion getExtOrIntegerDefault("targetSdkVersion") + targetSdkVersion getIntegerDefault("targetSdkVersion") buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString() } buildTypes { diff --git a/package.json b/package.json index a678402..7b1c8a1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "freerasp-react-native", - "version": "3.14.0", + "version": "3.14.1", "description": "React Native plugin for improving app security and threat monitoring on Android and iOS mobile devices.", "main": "lib/commonjs/index", "module": "lib/module/index",