[Scummvm-git-logs] scummvm branch-2-7-0-android -> 88a1e1d57c551cb44f26742feafcd1a56e046163

antoniou79 noreply at scummvm.org
Wed Mar 29 09:45:58 UTC 2023


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:
88a1e1d57c ANDROID: Update some properties in AndroidManifest


Commit: 88a1e1d57c551cb44f26742feafcd1a56e046163
    https://github.com/scummvm/scummvm/commit/88a1e1d57c551cb44f26742feafcd1a56e046163
Author: antoniou79 (a.antoniou79 at gmail.com)
Date: 2023-03-29T12:45:49+03:00

Commit Message:
ANDROID: Update some properties in AndroidManifest

This is according to Lint suggestions mostly

Changed paths:
    dists/android/AndroidManifest.xml


diff --git a/dists/android/AndroidManifest.xml b/dists/android/AndroidManifest.xml
index 701758ffe31..df8683f6233 100644
--- a/dists/android/AndroidManifest.xml
+++ b/dists/android/AndroidManifest.xml
@@ -1,10 +1,14 @@
 <?xml version="1.0" encoding="utf-8"?>
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
+	xmlns:tools="http://schemas.android.com/tools"
 	android:installLocation="auto"
 	android:launchMode="singleTask"
-	android:sharedUserId="org.scummvm.scummvm">
+	android:sharedUserId="org.scummvm.scummvm"
+	android:sharedUserMaxSdkVersion="32"
+	tools:targetApi="tiramisu">
 
-	<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
+	<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
+		tools:ignore="ScopedStorage" />
 	<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
 	<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
 	<uses-permission android:name="android.permission.INTERNET" />
@@ -27,6 +31,7 @@
 		android:required="true" />
 
 	<supports-screens
+		android:resizeable="true"
 		android:largeScreens="true"
 		android:normalScreens="true"
 		android:smallScreens="true"
@@ -36,7 +41,7 @@
 		android:allowBackup="true"
 		android:description="@string/app_desc"
 		android:icon="@mipmap/scummvm"
-		android:isGame="true"
+		android:appCategory="game"
 		android:label="@string/app_name"
 		android:resizeableActivity="false"
 		android:requestLegacyExternalStorage="true">




More information about the Scummvm-git-logs mailing list