shortcuts.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
  2. <shortcut
  3. android:enabled="true"
  4. android:icon="@drawable/sc_collections_bookmark_48dp"
  5. android:shortcutDisabledMessage="@string/app_not_available"
  6. android:shortcutId="show_library"
  7. android:shortcutLongLabel="@string/label_library"
  8. android:shortcutShortLabel="@string/label_library">
  9. <intent
  10. android:action="eu.kanade.tachiyomi.SHOW_LIBRARY"
  11. android:targetClass="eu.kanade.tachiyomi.ui.main.MainActivity" />
  12. </shortcut>
  13. <shortcut
  14. android:enabled="true"
  15. android:icon="@drawable/sc_new_releases_48dp"
  16. android:shortcutDisabledMessage="@string/app_not_available"
  17. android:shortcutId="show_recently_updated"
  18. android:shortcutLongLabel="@string/label_recent_updates"
  19. android:shortcutShortLabel="@string/label_recent_updates">
  20. <intent
  21. android:action="eu.kanade.tachiyomi.SHOW_RECENTLY_UPDATED"
  22. android:targetClass="eu.kanade.tachiyomi.ui.main.MainActivity" />
  23. </shortcut>
  24. <shortcut
  25. android:enabled="true"
  26. android:icon="@drawable/sc_history_48dp"
  27. android:shortcutDisabledMessage="@string/app_not_available"
  28. android:shortcutId="show_recently_read"
  29. android:shortcutLongLabel="@string/label_recent_manga"
  30. android:shortcutShortLabel="@string/label_recent_manga">
  31. <intent
  32. android:action="eu.kanade.tachiyomi.SHOW_RECENTLY_READ"
  33. android:targetClass="eu.kanade.tachiyomi.ui.main.MainActivity" />
  34. </shortcut>
  35. <shortcut
  36. android:enabled="true"
  37. android:icon="@drawable/sc_explore_48dp"
  38. android:shortcutDisabledMessage="@string/app_not_available"
  39. android:shortcutId="show_catalogues"
  40. android:shortcutLongLabel="@string/browse"
  41. android:shortcutShortLabel="@string/browse">
  42. <intent
  43. android:action="eu.kanade.tachiyomi.SHOW_CATALOGUES"
  44. android:targetClass="eu.kanade.tachiyomi.ui.main.MainActivity" />
  45. </shortcut>
  46. </shortcuts>