Initial widget work

Co-authored-by: Sylvia van Os <sylvia@hackerchick.me>
This commit is contained in:
realwk
2025-07-30 21:21:55 +02:00
committed by Sylvia van Os
parent e217e99864
commit 9a0149def8
11 changed files with 280 additions and 16 deletions

View File

@@ -30,6 +30,20 @@
android:supportsRtl="true"
android:theme="@style/AppTheme"
android:localeConfig="@xml/locales_config">
<receiver
android:name="CatimaWidget"
android:label="@string/card_list_widget_name"
android:exported="false">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/catima_widget_info" />
</receiver>
<activity
android:name=".MainActivity"
android:exported="true"
@@ -204,5 +218,9 @@
<action android:name="android.service.controls.ControlsProviderService" />
</intent-filter>
</service>
<service
android:name=".CatimaRemoteViewsService"
android:permission="android.permission.BIND_REMOTEVIEWS" />
</application>
</manifest>