From f959157d3172ba33bfc3cf96993a78c59d46c68b Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Thu, 9 Feb 2023 15:40:58 +0100 Subject: [PATCH] android: Increase minSdkVersion to 21 (Android 5.0) Newer NDKs haven't supported the version(s) we used for a while. Also, versions < 21 will be removed with the next version of the NDK. --- src/frontends/android/app/build.gradle | 2 +- src/frontends/android/app/src/main/jni/Application.mk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontends/android/app/build.gradle b/src/frontends/android/app/build.gradle index e181bb977b..6afbe3a233 100644 --- a/src/frontends/android/app/build.gradle +++ b/src/frontends/android/app/build.gradle @@ -7,7 +7,7 @@ android { defaultConfig { applicationId "org.strongswan.android" - minSdkVersion 15 + minSdkVersion 21 targetSdkVersion 32 versionCode 75 versionName "2.3.3" diff --git a/src/frontends/android/app/src/main/jni/Application.mk b/src/frontends/android/app/src/main/jni/Application.mk index 00a46d70e6..2133d20c64 100644 --- a/src/frontends/android/app/src/main/jni/Application.mk +++ b/src/frontends/android/app/src/main/jni/Application.mk @@ -1 +1 @@ -APP_PLATFORM := android-19 +APP_PLATFORM := android-21 -- 2.47.2