SDL: updated target Androidi API to Android Q API level 29

This commit is contained in:
Sergii Pylypenko
2019-08-31 19:03:36 +03:00
parent cde94796a7
commit 31f306976f
3 changed files with 4 additions and 4 deletions

View File

@@ -60,7 +60,7 @@
</application>
<!-- Must match version numbers in project/app/build-template.gradle -->
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="28" />
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="29" />
<!-- ==INTERNET== --> <uses-permission android:name="android.permission.INTERNET" />
<!-- ==EXTERNAL_STORAGE== --> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

View File

@@ -1,12 +1,12 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
compileSdkVersion 29
defaultConfig {
applicationId "net.olofson.ballfield"
minSdkVersion 16 // Must match version numbers in project/AndroidManifestTemplate.xml
targetSdkVersion 28
targetSdkVersion 29
}
buildTypes {