[Scummvm-git-logs] scummvm master -> 18b83107db1ee4c7ae7f9e73b7d2c544e461a676
antoniou79
a.antoniou79 at gmail.com
Sun Oct 4 09:32:52 UTC 2020
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
18b83107db ANDROID: Revert to targeting API 28 to prevent file access issues
Commit: 18b83107db1ee4c7ae7f9e73b7d2c544e461a676
https://github.com/scummvm/scummvm/commit/18b83107db1ee4c7ae7f9e73b7d2c544e461a676
Author: antoniou (a.antoniou79 at gmail.com)
Date: 2020-10-04T12:32:31+03:00
Commit Message:
ANDROID: Revert to targeting API 28 to prevent file access issues
See bug ticket: https://bugs.scummvm.org/ticket/11753
API 29 makes certain file access functions return empty lists due to restricitve policies. We need to come up with an alternative for Android 10 and higher, when we will switch to targeting API 29 (or higher). Google enforces this switch on November 2nd for application updates.
Changed paths:
dists/android/build.gradle
diff --git a/dists/android/build.gradle b/dists/android/build.gradle
index d225f6f3ea..22fe40d04d 100644
--- a/dists/android/build.gradle
+++ b/dists/android/build.gradle
@@ -33,7 +33,7 @@ android {
setProperty("archivesBaseName", "ScummVM")
minSdkVersion 16
- targetSdkVersion 29
+ targetSdkVersion 28
versionName "2.3.0git"
versionCode 61
More information about the Scummvm-git-logs
mailing list