From: Tobias Brunner Date: Thu, 9 Feb 2023 14:40:58 +0000 (+0100) Subject: android: Increase minSdkVersion to 21 (Android 5.0) X-Git-Tag: android-2.4.0^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f959157d3172ba33bfc3cf96993a78c59d46c68b;p=thirdparty%2Fstrongswan.git 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. --- 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