[Scummvm-git-logs] scummvm master -> 231a58ee356da05b6f2a36ec3cdf892b18549080

antoniou79 noreply at scummvm.org
Wed Jan 31 12:58:43 UTC 2024


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:
231a58ee35 ANDROID: Restore LEANBACK_LAUNCHER category for splash activity


Commit: 231a58ee356da05b6f2a36ec3cdf892b18549080
    https://github.com/scummvm/scummvm/commit/231a58ee356da05b6f2a36ec3cdf892b18549080
Author: antoniou79 (a.antoniou79 at gmail.com)
Date: 2024-01-31T14:52:20+02:00

Commit Message:
ANDROID: Restore LEANBACK_LAUNCHER category for splash activity

This was previously removed in commit 5cb87c1eca445ccfff4ab5bf5336c7e5d88fe2d8

We removed it when nearing the (then) upcoming 2.7.1 release, Play Store blocked the apk publishing because of this category's inclusion.
At the time, Play Store's error message was:
 The app is published as an apk that supports TV. In other words, it contains <category android:name="android.intent.category.LEANBACK_LAUNCHER"/>
 under one of the intent-filter of the main activity . It must be published as an app bundle instead.

Which was due to "Following June 30, 2023, Google Play will no longer support TV app updates in APK. All TV app updates must be published with Android App Bundles (AAB)."

Since 2.8.0 we publish to the Play Store in app bundle format, so it should be ok to restore the category. However, this does not necessarily mean
that the app will work on Android / Google TVs without issues. More testing and user feedback might be required.

Changed paths:
    dists/android/AndroidManifest.xml


diff --git a/dists/android/AndroidManifest.xml b/dists/android/AndroidManifest.xml
index c8080e3dada..00139f9fe67 100644
--- a/dists/android/AndroidManifest.xml
+++ b/dists/android/AndroidManifest.xml
@@ -55,6 +55,7 @@
 
 				<category android:name="android.intent.category.LAUNCHER" />
 				<category android:name="tv.ouya.intent.category.GAME" />
+				<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
 			</intent-filter>
 		</activity>
 		<activity




More information about the Scummvm-git-logs mailing list