24 lines
793 B
XML
24 lines
793 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
App shortcuts exposed to the launcher long-press menu.
|
|
Add <shortcut> entries per app that should have custom shortcuts.
|
|
|
|
See: https://developer.android.com/guide/topics/ui/shortcuts/creating-shortcuts
|
|
-->
|
|
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<!--
|
|
<shortcut
|
|
android:shortcutId="example_shortcut"
|
|
android:enabled="true"
|
|
android:shortcutShortLabel="@string/shortcut_short_label"
|
|
android:shortcutLongLabel="@string/shortcut_long_label">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:targetPackage="com.example.app"
|
|
android:targetClass="com.example.app.MainActivity" />
|
|
</shortcut>
|
|
-->
|
|
|
|
</shortcuts>
|