Updated required Android SDK to API 26, to match Google's new App Store requirements

This commit is contained in:
Sam Lantinga 2018-08-21 20:46:25 -07:00
parent 7f4860e2be
commit 38ae49880f
2 changed files with 4 additions and 4 deletions

View File

@ -8,14 +8,14 @@ else {
} }
android { android {
compileSdkVersion 19 compileSdkVersion 26
buildToolsVersion "26.0.1" buildToolsVersion "26.0.1"
defaultConfig { defaultConfig {
if (buildAsApplication) { if (buildAsApplication) {
applicationId "org.libsdl.app" applicationId "org.libsdl.app"
} }
minSdkVersion 14 minSdkVersion 14
targetSdkVersion 19 targetSdkVersion 26
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"
externalNativeBuild { externalNativeBuild {

View File

@ -14,10 +14,10 @@ supported, but you can use the "android-project-ant" directory as a template.
Requirements Requirements
================================================================================ ================================================================================
Android SDK (version 19 or later) Android SDK (version 26 or later)
https://developer.android.com/sdk/index.html 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 https://developer.android.com/tools/sdk/ndk/index.html
Minimum API level supported by SDL: 14 (Android 4.0.1) Minimum API level supported by SDL: 14 (Android 4.0.1)