File: shortcuts.xml

package info (click to toggle)
ddnet 19.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 68,960 kB
  • sloc: cpp: 195,050; ansic: 58,572; python: 5,568; asm: 946; sh: 941; java: 366; xml: 206; makefile: 31
file content (30 lines) | stat: -rw-r--r-- 930 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<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-gles"
		android:enabled="true"
		android:icon="@mipmap/ic_launcher"
		android:shortcutShortLabel="@string/shortcut_play_gles_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="GLES" />
		</intent>
	</shortcut>
</shortcuts>