Allows widget on Samsung cover screens

Adds meta-data to the widget, allowing it to be used on the cover screen
of Samsung devices such as the Flip.

The widget renders as a 4x4 grid (not an optimal layout) but functions
for launching the most recent audiobook or controlling playback.
This commit is contained in:
Matt Fulgo
2025-08-19 22:24:58 -04:00
parent 4be1598eca
commit 941e823374
3 changed files with 9 additions and 1 deletions
+4
View File
@@ -36,6 +36,10 @@
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/media_player_widget_info" />
<meta-data
android:name="com.samsung.android.appwidget.provider"
android:resource="@xml/samsung_cover_widget_info" />
</receiver>
<!-- Used by Android Auto -->
@@ -11,4 +11,4 @@
android:targetCellWidth="4"
android:targetCellHeight="1"
android:updatePeriodMillis="86400000"
android:widgetCategory="home_screen" />
android:widgetCategory="home_screen|keyguard" />
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<samsung-appwidget-provider
display="sub_screen"
privacyWidget="false" />