[Scummvm-git-logs] scummvm master -> cc37cb6f32a6e141a2236137b14657722c87df07
antoniou79
noreply at scummvm.org
Mon Mar 27 18:08:46 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:
cc37cb6f32 ANDROID: Update some properties in AndroidManifest
Commit: cc37cb6f32a6e141a2236137b14657722c87df07
https://github.com/scummvm/scummvm/commit/cc37cb6f32a6e141a2236137b14657722c87df07
Author: antoniou79 (a.antoniou79 at gmail.com)
Date: 2023-03-27T21:08:31+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