basic support for pinned shortcuts (see #45)

TODO: Show pinned shortcuts in app list
This commit is contained in:
Josia Pietsch 2025-02-18 04:20:27 +01:00
parent befa3afc5d
commit 3aee137a3c
Signed by: jrpie
GPG key ID: E70B571D66986A2D
30 changed files with 509 additions and 26 deletions

View file

@ -19,6 +19,16 @@
android:supportsRtl="true"
android:theme="@style/launcherBaseTheme"
tools:ignore="UnusedAttribute">
<activity
android:name=".ui.PinShortcutActivity"
android:autoRemoveFromRecents="true"
android:excludeFromRecents="true"
android:exported="false">
<intent-filter>
<action android:name="android.content.pm.action.CONFIRM_PIN_SHORTCUT" />
<action android:name="android.content.pm.action.CONFIRM_PIN_APPWIDGET" />
</intent-filter>
</activity>
<activity
android:name=".ui.HomeActivity"
android:clearTaskOnLaunch="true"