fb529f52d3
Removing some of the unused, removing the prefixes on some strings Cleaning up some of the unused resoures and dialogs
40 lines
1.7 KiB
XML
40 lines
1.7 KiB
XML
<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/recent_updates"
|
|
android:shortcutShortLabel="@string/updates">
|
|
<intent
|
|
android:action="eu.kanade.tachiyomi.SHOW_RECENTLY_UPDATED"
|
|
android:targetPackage="${applicationId}"
|
|
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"
|
|
android:shortcutLongLabel="@string/history"
|
|
android:shortcutShortLabel="@string/history">
|
|
<intent
|
|
android:action="eu.kanade.tachiyomi.SHOW_RECENTLY_READ"
|
|
android:targetPackage="${applicationId}"
|
|
android:targetClass="eu.kanade.tachiyomi.ui.main.MainActivity" />
|
|
</shortcut>
|
|
<shortcut
|
|
android:enabled="true"
|
|
android:icon="@drawable/sc_extensions_48dp"
|
|
android:shortcutDisabledMessage="@string/app_not_available"
|
|
android:shortcutId="show_extensions"
|
|
android:shortcutLongLabel="@string/extensions"
|
|
android:shortcutShortLabel="@string/extensions">
|
|
<intent
|
|
android:action="eu.kanade.tachiyomi.EXTENSIONS"
|
|
android:targetPackage="${applicationId}"
|
|
android:targetClass="eu.kanade.tachiyomi.ui.main.MainActivity" />
|
|
</shortcut>
|
|
</shortcuts>
|