diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-05-08 15:29:36 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2018-05-08 15:29:42 +0200 |
commit | a6552819b1d357c0ee1afdbec7485afafa544793 (patch) | |
tree | 91cb2e25136b9113535f8e86a073dd84fbfc3362 | |
parent | d5c3fc152222c147c37f3147213600b5fc756599 (diff) |
Android: Increase targetSdkVersion to 27
Matches the change for 2.1 in #18626, and the new requirements from Google
for new apps starting with August 2018 (targetSdkVersion 26 or higher):
https://android-developers.googleblog.com/2017/12/improving-app-security-and-performance.html
-rw-r--r-- | platform/android/AndroidManifest.xml.template | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/AndroidManifest.xml.template b/platform/android/AndroidManifest.xml.template index 3e42b7a3cd..13d10b5026 100644 --- a/platform/android/AndroidManifest.xml.template +++ b/platform/android/AndroidManifest.xml.template @@ -201,6 +201,6 @@ $$ADD_PERMISSION_CHUNKS$$ <uses-permission android:name="godot.custom.18"/> <uses-permission android:name="godot.custom.19"/> -<uses-sdk android:minSdkVersion="18" android:targetSdkVersion="23"/> +<uses-sdk android:minSdkVersion="18" android:targetSdkVersion="27"/> </manifest> |