Files
Radio/app/src/main/res/xml/shortcuts.xml
2026-01-22 06:55:08 +01:00

25 lines
938 B
XML

<?xml version="1.0" encoding="utf-8"?>
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
<shortcut
android:enabled="true"
android:icon="@drawable/ic_shortcut_play_circle_24dp"
android:shortcutDisabledMessage="@string/shortcut_last_station_disabled_message"
android:shortcutId="lastStation"
android:shortcutLongLabel="@string/shortcut_last_station_long_label"
android:shortcutShortLabel="@string/shortcut_last_station_short_label">
<intent
android:action="com.michatec.radio.action.START"
android:targetClass="com.michatec.radio.MainActivity"
android:targetPackage="com.michatec.radio">
<extra
android:name="START_LAST_PLAYED_STATION"
android:value="true" />
</intent>
<categories android:name="android.shortcut.conversation" />
</shortcut>
</shortcuts>