This repository has been archived on 2024-06-08. You can view files and clone it, but cannot push or open issues or pull requests.
tachiyomi/app/shortcuts.xml

40 lines
1.7 KiB
XML
Raw Normal View History

<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
<shortcut
android:enabled="true"
android:icon="@drawable/sc_update_48dp"
android:shortcutDisabledMessage="@string/app_not_available"
android:shortcutId="show_recently_updated"
android:shortcutLongLabel="@string/label_recent_updates"
android:shortcutShortLabel="@string/short_recent_updates">
<intent
android:action="eu.kanade.tachiyomi.SHOW_RECENTLY_UPDATED"
2020-04-07 01:39:50 -04:00
android:targetPackage="${applicationId}"
2017-10-28 08:44:19 -04:00
android:targetClass="eu.kanade.tachiyomi.ui.main.MainActivity" />
</shortcut>
<shortcut
android:enabled="true"
android:icon="@drawable/sc_glasses_48dp"
android:shortcutDisabledMessage="@string/app_not_available"
android:shortcutId="show_recently_read"
2020-04-07 01:39:50 -04:00
android:shortcutLongLabel="@string/history"
android:shortcutShortLabel="@string/history">
<intent
android:action="eu.kanade.tachiyomi.SHOW_RECENTLY_READ"
2020-04-07 01:39:50 -04:00
android:targetPackage="${applicationId}"
2017-10-28 08:44:19 -04:00
android:targetClass="eu.kanade.tachiyomi.ui.main.MainActivity" />
</shortcut>
<shortcut
android:enabled="true"
2020-04-07 01:39:50 -04:00
android:icon="@drawable/sc_extensions_48dp"
android:shortcutDisabledMessage="@string/app_not_available"
2020-04-07 01:39:50 -04:00
android:shortcutId="show_extensions"
android:shortcutLongLabel="@string/label_extensions"
android:shortcutShortLabel="@string/label_extensions">
<intent
2020-04-07 01:39:50 -04:00
android:action="eu.kanade.tachiyomi.EXTENSIONS"
android:targetPackage="${applicationId}"
2017-10-28 08:44:19 -04:00
android:targetClass="eu.kanade.tachiyomi.ui.main.MainActivity" />
</shortcut>
</shortcuts>