2022-11-06 00:14:40 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
tools:targetApi="25">
|
|
|
|
<shortcut
|
|
|
|
android:shortcutId="home"
|
|
|
|
android:enabled="true"
|
|
|
|
android:icon="@drawable/ic_home"
|
|
|
|
android:shortcutShortLabel="@string/startpage">
|
|
|
|
<intent
|
|
|
|
android:action="android.intent.action.VIEW"
|
2022-11-06 00:46:28 +05:30
|
|
|
android:targetPackage="com.github.libretube"
|
2022-11-06 00:14:40 +05:30
|
|
|
android:targetClass="com.github.libretube.ui.activities.MainActivity" />
|
|
|
|
</shortcut>
|
2022-11-17 21:53:10 +05:30
|
|
|
<shortcut
|
|
|
|
android:shortcutId="trends"
|
|
|
|
android:enabled="true"
|
|
|
|
android:icon="@drawable/ic_trending"
|
|
|
|
android:shortcutShortLabel="@string/trends">
|
|
|
|
<intent
|
|
|
|
android:action="android.intent.action.VIEW"
|
|
|
|
android:targetPackage="com.github.libretube"
|
|
|
|
android:targetClass="com.github.libretube.ui.activities.MainActivity" />
|
|
|
|
</shortcut>
|
2022-11-06 00:14:40 +05:30
|
|
|
<shortcut
|
|
|
|
android:shortcutId="subscriptions"
|
|
|
|
android:enabled="true"
|
|
|
|
android:icon="@drawable/ic_subscriptions"
|
|
|
|
android:shortcutShortLabel="@string/subscriptions">
|
|
|
|
<intent
|
|
|
|
android:action="android.intent.action.VIEW"
|
2022-11-06 00:46:28 +05:30
|
|
|
android:targetPackage="com.github.libretube"
|
2022-11-06 00:14:40 +05:30
|
|
|
android:targetClass="com.github.libretube.ui.activities.MainActivity">
|
2022-11-06 00:46:28 +05:30
|
|
|
<extra android:name="fragmentToOpen" android:value="subscriptions" />
|
2022-11-06 00:14:40 +05:30
|
|
|
</intent>
|
|
|
|
</shortcut>
|
|
|
|
<shortcut
|
|
|
|
android:shortcutId="library"
|
|
|
|
android:enabled="true"
|
|
|
|
android:icon="@drawable/ic_library"
|
|
|
|
android:shortcutShortLabel="@string/library">
|
|
|
|
<intent
|
|
|
|
android:action="android.intent.action.VIEW"
|
2022-11-06 00:46:28 +05:30
|
|
|
android:targetPackage="com.github.libretube"
|
2022-11-06 00:14:40 +05:30
|
|
|
android:targetClass="com.github.libretube.ui.activities.MainActivity">
|
2022-11-06 00:46:28 +05:30
|
|
|
<extra android:name="fragmentToOpen" android:value="library" />
|
2022-11-06 00:14:40 +05:30
|
|
|
</intent>
|
|
|
|
</shortcut>
|
|
|
|
</shortcuts>
|