[Scummvm-git-logs] scummvm branch-2-8 -> 10ae290c23e1cff541fd951be0db6ce31d1575b6
antoniou79
noreply at scummvm.org
Wed Jan 31 13:00:23 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:
10ae290c23 ANDROID: Restore LEANBACK_LAUNCHER category for splash activity
Commit: 10ae290c23e1cff541fd951be0db6ce31d1575b6
https://github.com/scummvm/scummvm/commit/10ae290c23e1cff541fd951be0db6ce31d1575b6
Author: antoniou79 (a.antoniou79 at gmail.com)
Date: 2024-01-31T15:00:14+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 11e47bf336b..e42468297af 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