Android: Target API level 29 as required by Google Play

This is required for new apps since August 3, 2020:
https://support.google.com/googleplay/android-developer/answer/113469#targetsdk
This commit is contained in:
Rémi Verschelde
2020-08-15 12:57:08 +02:00
parent 32ea38723d
commit 408667f597
3 changed files with 4 additions and 4 deletions

View File

@@ -36,6 +36,6 @@ $$ADD_APPLICATION_CHUNKS$$
$$ADD_PERMISSION_CHUNKS$$
<uses-sdk android:minSdkVersion="18" android:targetSdkVersion="28"/>
<uses-sdk android:minSdkVersion="18" android:targetSdkVersion="29"/>
</manifest>

View File

@@ -105,7 +105,7 @@ gradle_asset_dirs_text = ""
gradle_default_config_text = ""
minSdk = 18
targetSdk = 28
targetSdk = 29
for x in env.android_default_config:
if x.startswith("minSdkVersion") and int(x.split(" ")[-1]) < minSdk:

View File

@@ -31,8 +31,8 @@ android {
disable 'MissingTranslation'
}
compileSdkVersion 28
buildToolsVersion "28.0.3"
compileSdkVersion 29
buildToolsVersion "29.0.3"
useLibrary 'org.apache.http.legacy'
packagingOptions {