mirror of
https://github.com/mihonapp/mihon.git
synced 2025-10-29 21:37:56 +01:00
"Updates" widget for Galaxy Z Flip5 cover screen (#9892)
This commit is contained in:
@@ -1,2 +1,39 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest />
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<application>
|
||||
|
||||
<receiver
|
||||
android:name="tachiyomi.presentation.widget.UpdatesGridGlanceReceiver"
|
||||
android:enabled="@bool/glance_appwidget_available"
|
||||
android:exported="false"
|
||||
android:label="@string/label_recent_updates">
|
||||
<intent-filter>
|
||||
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
||||
</intent-filter>
|
||||
|
||||
<meta-data
|
||||
android:name="android.appwidget.provider"
|
||||
android:resource="@xml/updates_grid_homescreen_widget_info" />
|
||||
</receiver>
|
||||
<receiver
|
||||
android:name="tachiyomi.presentation.widget.UpdatesGridCoverScreenGlanceReceiver"
|
||||
android:enabled="@bool/glance_appwidget_available"
|
||||
android:exported="false"
|
||||
android:label="@string/label_recent_updates">
|
||||
<intent-filter>
|
||||
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
||||
</intent-filter>
|
||||
|
||||
<meta-data
|
||||
android:name="android.appwidget.provider"
|
||||
android:resource="@xml/updates_grid_lockscreen_widget_info" />
|
||||
<meta-data
|
||||
android:name="com.samsung.android.appwidget.provider"
|
||||
android:resource="@xml/updates_grid_samsung_cover_widget_info" />
|
||||
<meta-data
|
||||
android:name="com.samsung.android.sdk.subscreen.widget.support_visibility_callback"
|
||||
android:value="true" />
|
||||
</receiver>
|
||||
|
||||
</application>
|
||||
</manifest>
|
||||
Reference in New Issue
Block a user