Glance widget for Updates (#7581)

* glance

* glance2

(cherry picked from commit 29e1976b90)

# Conflicts:
#	app/src/main/java/eu/kanade/tachiyomi/App.kt
This commit is contained in:
Ivan Iskandar
2022-07-31 22:31:40 +07:00
committed by Jobobby04
parent 702fdb054a
commit 46cbcfc82e
18 changed files with 431 additions and 0 deletions
+14
View File
@@ -173,6 +173,20 @@
android:name=".data.notification.NotificationReceiver"
android:exported="false" />
<receiver
android:name=".glance.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_glance_widget_info" />
</receiver>
<service
android:name=".data.library.LibraryUpdateService"
android:exported="false" />