From 7249992b62bbe8ba01df41df1bb1b6122d1f2ba4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Mon, 8 Jul 2019 14:01:42 +0200 Subject: [PATCH] Android: Target SDK 28, required by Google from Aug 2019 --- platform/android/AndroidManifest.xml.template | 2 +- platform/android/SCsub | 2 +- platform/android/build.gradle.template | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/platform/android/AndroidManifest.xml.template b/platform/android/AndroidManifest.xml.template index c3afe08f286..5f843b9d83e 100644 --- a/platform/android/AndroidManifest.xml.template +++ b/platform/android/AndroidManifest.xml.template @@ -36,6 +36,6 @@ $$ADD_APPLICATION_CHUNKS$$ $$ADD_PERMISSION_CHUNKS$$ - + diff --git a/platform/android/SCsub b/platform/android/SCsub index 4d8c108b1c9..b4a9d02c896 100644 --- a/platform/android/SCsub +++ b/platform/android/SCsub @@ -105,7 +105,7 @@ gradle_asset_dirs_text = "" gradle_default_config_text = "" minSdk = 18 -targetSdk = 27 +targetSdk = 28 for x in env.android_default_config: if x.startswith("minSdkVersion") and int(x.split(" ")[-1]) < minSdk: diff --git a/platform/android/build.gradle.template b/platform/android/build.gradle.template index 4fa400bbb70..cc6c155428d 100644 --- a/platform/android/build.gradle.template +++ b/platform/android/build.gradle.template @@ -31,7 +31,7 @@ android { disable 'MissingTranslation' } - compileSdkVersion 27 + compileSdkVersion 28 buildToolsVersion "28.0.3" useLibrary 'org.apache.http.legacy'