aniyomi/app/shortcuts.xml

59 lines
2.6 KiB
XML
Raw Normal View History

<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
<shortcut
android:enabled="true"
2020-04-08 00:01:42 +03:00
android:icon="@drawable/sc_collections_bookmark_48dp"
android:shortcutDisabledMessage="@string/app_not_available"
android:shortcutId="show_library"
2021-05-26 16:40:37 +03:00
android:shortcutLongLabel="@string/label_manga"
android:shortcutShortLabel="@string/label_manga">
<intent
android:action="eu.kanade.tachiyomi.SHOW_LIBRARY"
2017-10-28 15:44:19 +03:00
android:targetClass="eu.kanade.tachiyomi.ui.main.MainActivity" />
</shortcut>
<shortcut
android:enabled="true"
2021-05-26 14:59:36 +03:00
android:icon="@drawable/sc_collections_baseline_48dp"
android:shortcutDisabledMessage="@string/app_not_available"
2021-05-16 17:48:58 +03:00
android:shortcutId="show_animelib"
android:shortcutLongLabel="@string/label_animelib"
android:shortcutShortLabel="@string/label_animelib">
<intent
2021-05-16 17:48:58 +03:00
android:action="eu.kanade.tachiyomi.SHOW_ANIMELIB"
2017-10-28 15:44:19 +03:00
android:targetClass="eu.kanade.tachiyomi.ui.main.MainActivity" />
</shortcut>
<shortcut
android:enabled="true"
2021-05-16 17:48:58 +03:00
android:icon="@drawable/sc_new_releases_48dp"
android:shortcutDisabledMessage="@string/app_not_available"
2021-05-16 17:48:58 +03:00
android:shortcutId="show_recently_updated"
android:shortcutLongLabel="@string/label_recent_updates"
2021-05-30 18:41:57 +03:00
android:shortcutShortLabel="@string/label_recent_updates">
<intent
2021-05-16 17:48:58 +03:00
android:action="eu.kanade.tachiyomi.SHOW_RECENTLY_UPDATED"
2017-10-28 15:44:19 +03:00
android:targetClass="eu.kanade.tachiyomi.ui.main.MainActivity" />
</shortcut>
<shortcut
android:enabled="true"
android:icon="@drawable/sc_history_48dp"
android:shortcutDisabledMessage="@string/app_not_available"
android:shortcutId="show_recently_updated"
android:shortcutLongLabel="@string/label_recent_manga"
android:shortcutShortLabel="@string/label_recent_manga">
<intent
android:action="eu.kanade.tachiyomi.SHOW_RECENTLY_READ"
android:targetClass="eu.kanade.tachiyomi.ui.main.MainActivity" />
</shortcut>
<shortcut
android:enabled="true"
android:icon="@drawable/sc_explore_48dp"
android:shortcutDisabledMessage="@string/app_not_available"
android:shortcutId="show_catalogues"
android:shortcutLongLabel="@string/browse"
android:shortcutShortLabel="@string/browse">
<intent
android:action="eu.kanade.tachiyomi.SHOW_CATALOGUES"
2017-10-28 15:44:19 +03:00
android:targetClass="eu.kanade.tachiyomi.ui.main.MainActivity" />
</shortcut>
</shortcuts>