#26 android home widget

This commit is contained in:
lollipopkit
2023-07-19 18:26:10 +08:00
parent 0ee55d4873
commit 9ce221935e
29 changed files with 461 additions and 32 deletions

View File

@@ -36,5 +36,25 @@
<meta-data
android:name="flutterEmbedding"
android:value="2" />
<receiver
android:name=".widget.HomeWidget"
android:exported="false"
android:label="StatusWidget">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="tech.lolli.toolbox.UPDATE_WIDGET" />
<action android:name="miui.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<!--
<meta-data
android:name="miuiWidget"
android:value="true" />
-->
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/home_widget" />
</receiver>
</application>
</manifest>