[Scummvm-git-logs] scummvm branch-2-2 -> 350debc3ee80dc24e602aa4178cf1182ae4933e2

antoniou79 a.antoniou79 at gmail.com
Sun Oct 4 09:33:38 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:
350debc3ee ANDROID: Revert to targeting API 28 to prevent file access issues


Commit: 350debc3ee80dc24e602aa4178cf1182ae4933e2
    https://github.com/scummvm/scummvm/commit/350debc3ee80dc24e602aa4178cf1182ae4933e2
Author: antoniou (a.antoniou79 at gmail.com)
Date: 2020-10-04T12:33:29+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 3a251155bc..c5c7f3ebee 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.2.1c"
         versionCode 57




More information about the Scummvm-git-logs mailing list