Updated required Android SDK to API 26, to match Google's new App Store requirements
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
diff --git a/android-project/app/build.gradle b/android-project/app/build.gradle
index 7cc4cd7..0e361bc 100644
--- a/android-project/app/build.gradle
+++ b/android-project/app/build.gradle
@@ -8,14 +8,14 @@ else {
}
android {
- compileSdkVersion 19
+ compileSdkVersion 26
buildToolsVersion "26.0.1"
defaultConfig {
if (buildAsApplication) {
applicationId "org.libsdl.app"
}
minSdkVersion 14
- targetSdkVersion 19
+ targetSdkVersion 26
versionCode 1
versionName "1.0"
externalNativeBuild {
diff --git a/docs/README-android.md b/docs/README-android.md
index 2d20534..9af88be 100644
--- a/docs/README-android.md
+++ b/docs/README-android.md
@@ -14,10 +14,10 @@ supported, but you can use the "android-project-ant" directory as a template.
Requirements
================================================================================
-Android SDK (version 19 or later)
+Android SDK (version 26 or later)
https://developer.android.com/sdk/index.html
-Android NDK r10e or later
+Android NDK r15c or later
https://developer.android.com/tools/sdk/ndk/index.html
Minimum API level supported by SDL: 14 (Android 4.0.1)