[Scummvm-git-logs] scummvm master -> 4e248a70bf9ca91d94c614f72f50b81f043fcf0e
antoniou79
antoniou at cti.gr
Mon Oct 21 13:00:01 CEST 2019
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:
4e248a70bf ANDROID: Set target sdk to 28 in project.properties
Commit: 4e248a70bf9ca91d94c614f72f50b81f043fcf0e
https://github.com/scummvm/scummvm/commit/4e248a70bf9ca91d94c614f72f50b81f043fcf0e
Author: Thanasis Antoniou (a.antoniou79 at gmail.com)
Date: 2019-10-21T13:59:00+03:00
Commit Message:
ANDROID: Set target sdk to 28 in project.properties
Also minor additions of tags in Manifest files
Changed paths:
dists/android/AndroidManifest.xml
dists/android/AndroidManifest.xml.in
dists/android/project.properties
diff --git a/dists/android/AndroidManifest.xml b/dists/android/AndroidManifest.xml
index 0f17c28..a344af7 100644
--- a/dists/android/AndroidManifest.xml
+++ b/dists/android/AndroidManifest.xml
@@ -5,6 +5,8 @@
package="org.scummvm.scummvm"
android:versionCode="@ANDROID_VERSIONCODE@"
android:versionName="2.2.0git"
+ android:launchMode="singleTask"
+ android:installLocation="auto"
android:sharedUserId="org.scummvm.scummvm">
<uses-sdk android:minSdkVersion="3"
@@ -35,9 +37,16 @@
android:name="android.software.leanback"
android:required="false"/>
+ <supports-screens
+ android:smallScreens="true"
+ android:normalScreens="true"
+ android:largeScreens="true"
+ android:xlargeScreens="true" />
+
<application
android:label="@string/app_name"
android:description="@string/app_desc"
+ android:allowBackup="true"
android:isGame="true"
android:icon="@drawable/scummvm">
<activity android:name=".ScummVMActivity"
diff --git a/dists/android/AndroidManifest.xml.in b/dists/android/AndroidManifest.xml.in
index 3410d33..6b7ee73 100644
--- a/dists/android/AndroidManifest.xml.in
+++ b/dists/android/AndroidManifest.xml.in
@@ -5,6 +5,8 @@
package="org.scummvm.scummvm"
android:versionCode="@ANDROID_VERSIONCODE@"
android:versionName="@VERSION@"
+ android:launchMode="singleTask"
+ android:installLocation="auto"
android:sharedUserId="org.scummvm.scummvm">
<uses-sdk android:minSdkVersion="3"
@@ -35,9 +37,16 @@
android:name="android.software.leanback"
android:required="false"/>
+ <supports-screens
+ android:smallScreens="true"
+ android:normalScreens="true"
+ android:largeScreens="true"
+ android:xlargeScreens="true" />
+
<application
android:label="@string/app_name"
android:description="@string/app_desc"
+ android:allowBackup="true"
android:isGame="true"
android:icon="@drawable/scummvm">
<activity android:name=".ScummVMActivity"
diff --git a/dists/android/project.properties b/dists/android/project.properties
index 3c0d189..29e368b 100644
--- a/dists/android/project.properties
+++ b/dists/android/project.properties
@@ -8,4 +8,4 @@
# project structure.
# Project target.
-target=android-26
+target=android-28
More information about the Scummvm-git-logs
mailing list