mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 23:31:53 -05:00
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:
@@ -36,6 +36,6 @@ $$ADD_APPLICATION_CHUNKS$$
|
|||||||
|
|
||||||
$$ADD_PERMISSION_CHUNKS$$
|
$$ADD_PERMISSION_CHUNKS$$
|
||||||
|
|
||||||
<uses-sdk android:minSdkVersion="18" android:targetSdkVersion="28"/>
|
<uses-sdk android:minSdkVersion="18" android:targetSdkVersion="29"/>
|
||||||
|
|
||||||
</manifest>
|
</manifest>
|
||||||
|
|||||||
@@ -105,7 +105,7 @@ gradle_asset_dirs_text = ""
|
|||||||
gradle_default_config_text = ""
|
gradle_default_config_text = ""
|
||||||
|
|
||||||
minSdk = 18
|
minSdk = 18
|
||||||
targetSdk = 28
|
targetSdk = 29
|
||||||
|
|
||||||
for x in env.android_default_config:
|
for x in env.android_default_config:
|
||||||
if x.startswith("minSdkVersion") and int(x.split(" ")[-1]) < minSdk:
|
if x.startswith("minSdkVersion") and int(x.split(" ")[-1]) < minSdk:
|
||||||
|
|||||||
@@ -31,8 +31,8 @@ android {
|
|||||||
disable 'MissingTranslation'
|
disable 'MissingTranslation'
|
||||||
}
|
}
|
||||||
|
|
||||||
compileSdkVersion 28
|
compileSdkVersion 29
|
||||||
buildToolsVersion "28.0.3"
|
buildToolsVersion "29.0.3"
|
||||||
useLibrary 'org.apache.http.legacy'
|
useLibrary 'org.apache.http.legacy'
|
||||||
|
|
||||||
packagingOptions {
|
packagingOptions {
|
||||||
|
|||||||
Reference in New Issue
Block a user