mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-18 05:58:19 +00:00
31 lines
936 B
XML
31 lines
936 B
XML
|
<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
|
||
|
android:shortcutId="play-opengl"
|
||
|
android:enabled="true"
|
||
|
android:icon="@mipmap/ic_launcher"
|
||
|
android:shortcutShortLabel="@string/shortcut_play_opengl_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="OpenGL" />
|
||
|
</intent>
|
||
|
</shortcut>
|
||
|
</shortcuts>
|