Skip to content

Commit

Permalink
Android: Target SDK 28, required by Google from Aug 2019
Browse files Browse the repository at this point in the history
  • Loading branch information
akien-mga committed Jul 8, 2019
1 parent 332d74b commit 7249992
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion platform/android/AndroidManifest.xml.template
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ $$ADD_APPLICATION_CHUNKS$$

$$ADD_PERMISSION_CHUNKS$$

<uses-sdk android:minSdkVersion="18" android:targetSdkVersion="27"/>
<uses-sdk android:minSdkVersion="18" android:targetSdkVersion="28"/>

</manifest>
2 changes: 1 addition & 1 deletion platform/android/SCsub
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion platform/android/build.gradle.template
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ android {
disable 'MissingTranslation'
}

compileSdkVersion 27
compileSdkVersion 28
buildToolsVersion "28.0.3"
useLibrary 'org.apache.http.legacy'

Expand Down

0 comments on commit 7249992

Please sign in to comment.