[Scummvm-cvs-logs] scummvm master -> ce9573c8c598ddf4936a360e0b9c14aed19d1ce9

fuzzie fuzzie at fuzzie.org
Sun Jun 12 08:59:07 CEST 2016


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:
ce9573c8c5 ANDROID: Relax manifest hardware requirements.


Commit: ce9573c8c598ddf4936a360e0b9c14aed19d1ce9
    https://github.com/scummvm/scummvm/commit/ce9573c8c598ddf4936a360e0b9c14aed19d1ce9
Author: Alyssa Milburn (fuzzie at fuzzie.org)
Date: 2016-06-12T08:55:21+02:00

Commit Message:
ANDROID: Relax manifest hardware requirements.

This is necessary to make the package installable via Google Play for
almost all modern devices.

Changed paths:
    dists/android/AndroidManifest.xml
    dists/android/AndroidManifest.xml.in



diff --git a/dists/android/AndroidManifest.xml b/dists/android/AndroidManifest.xml
index 1416166..c091039 100644
--- a/dists/android/AndroidManifest.xml
+++ b/dists/android/AndroidManifest.xml
@@ -40,17 +40,8 @@
 
 	<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
 
-	<!-- Always needs some sort of qwerty keyboard.
-			Can work with a D-pad / trackball -->
-	<uses-configuration android:reqFiveWayNav="true"
-			android:reqKeyboardType="qwerty"/>
-
-	<!-- .. or touchscreen -->
-	<uses-configuration android:reqTouchScreen="finger"
-			android:reqKeyboardType="qwerty"/>
-
-	<uses-configuration android:reqTouchScreen="stylus"
-			android:reqKeyboardType="qwerty"/>
+	<uses-feature android:name="android.hardware.screen.landscape"
+		        android:required="false" />
 
 	<uses-feature android:name="android.hardware.touchscreen"
 		        android:required="false" />
diff --git a/dists/android/AndroidManifest.xml.in b/dists/android/AndroidManifest.xml.in
index de2f2d9..7eaece9 100644
--- a/dists/android/AndroidManifest.xml.in
+++ b/dists/android/AndroidManifest.xml.in
@@ -40,17 +40,8 @@
 
 	<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
 
-	<!-- Always needs some sort of qwerty keyboard.
-			Can work with a D-pad / trackball -->
-	<uses-configuration android:reqFiveWayNav="true"
-			android:reqKeyboardType="qwerty"/>
-
-	<!-- .. or touchscreen -->
-	<uses-configuration android:reqTouchScreen="finger"
-			android:reqKeyboardType="qwerty"/>
-
-	<uses-configuration android:reqTouchScreen="stylus"
-			android:reqKeyboardType="qwerty"/>
+	<uses-feature android:name="android.hardware.screen.landscape"
+		        android:required="false" />
 
 	<uses-feature android:name="android.hardware.touchscreen"
 		        android:required="false" />






More information about the Scummvm-git-logs mailing list