2024-08-26 21:46:20 +00:00
|
|
|
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<shortcut
|
|
|
|
android:shortcutId="play-vulkan"
|
|
|
|
android:enabled="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:shortcutShortLabel="@string/shortcut_play_vulkan_short">
|
|
|
|
<intent
|
|
|
|
android:action="android.intent.action.VIEW"
|
|
|
|
android:targetPackage="org.ddnet.client"
|
|
|
|
android:targetClass="org.ddnet.client.NativeMain">
|
|
|
|
<extra
|
|
|
|
android:name="gfx-backend"
|
|
|
|
android:value="Vulkan" />
|
|
|
|
</intent>
|
|
|
|
</shortcut>
|
|
|
|
<shortcut
|
2024-09-24 11:35:36 +00:00
|
|
|
android:shortcutId="play-gles"
|
2024-08-26 21:46:20 +00:00
|
|
|
android:enabled="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
2024-09-24 11:35:36 +00:00
|
|
|
android:shortcutShortLabel="@string/shortcut_play_gles_short">
|
2024-08-26 21:46:20 +00:00
|
|
|
<intent
|
|
|
|
android:action="android.intent.action.VIEW"
|
|
|
|
android:targetPackage="org.ddnet.client"
|
|
|
|
android:targetClass="org.ddnet.client.NativeMain">
|
|
|
|
<extra
|
|
|
|
android:name="gfx-backend"
|
2024-09-24 11:35:36 +00:00
|
|
|
android:value="GLES" />
|
2024-08-26 21:46:20 +00:00
|
|
|
</intent>
|
|
|
|
</shortcut>
|
|
|
|
</shortcuts>
|