add support for app widgets (see #44)
Some checks are pending
Android CI / build (push) Waiting to run

This commit is contained in:
Josia Pietsch 2025-04-24 14:37:05 +02:00
parent 077bd1ce44
commit e7a06c443d
Signed by: jrpie
GPG key ID: E70B571D66986A2D
35 changed files with 1691 additions and 100 deletions

View file

@ -8,6 +8,7 @@
tools:ignore="QueryAllPackagesPermission" />
<uses-permission android:name="android.permission.ACCESS_HIDDEN_PROFILES" />
<uses-permission android:name="android.permission.EXPAND_STATUS_BAR" />
<uses-permission android:name="android.permission.BIND_APPWIDGET" />
<application
android:name=".Application"
@ -19,6 +20,13 @@
android:supportsRtl="true"
android:theme="@style/launcherBaseTheme"
tools:ignore="UnusedAttribute">
<activity
android:name=".ui.widgets.manage.ManageWidgetsActivity"
android:theme="@style/launcherHomeTheme"
android:exported="false" />
<activity
android:name=".ui.widgets.manage.SelectWidgetActivity"
android:exported="false" />
<activity
android:name=".ui.PinShortcutActivity"
android:autoRemoveFromRecents="true"
@ -97,4 +105,4 @@
</service>
</application>
</manifest>
</manifest>