-
Notifications
You must be signed in to change notification settings - Fork 658
Expand file tree
/
Copy pathshortcuts.xml
More file actions
30 lines (27 loc) · 1.2 KB
/
Copy pathshortcuts.xml
File metadata and controls
30 lines (27 loc) · 1.2 KB
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
<?xml version="1.0" encoding="utf-8"?>
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
<shortcut
android:shortcutId="connect_vpn"
android:enabled="true"
android:icon="@drawable/ic_shortcut_connect"
android:shortcutShortLabel="@string/connect"
android:shortcutLongLabel="@string/shortcut_connect_long"
android:shortcutDisabledMessage="@string/shortcut_disabled">
<intent
android:action="com.tailscale.ipn.SHORTCUT_CONNECT"
android:targetPackage="com.tailscale.ipn"
android:targetClass="com.tailscale.ipn.MainActivity" />
</shortcut>
<shortcut
android:shortcutId="disconnect_vpn"
android:enabled="true"
android:icon="@drawable/ic_shortcut_disconnect"
android:shortcutShortLabel="@string/disconnect"
android:shortcutLongLabel="@string/shortcut_disconnect_long"
android:shortcutDisabledMessage="@string/shortcut_disabled">
<intent
android:action="com.tailscale.ipn.SHORTCUT_DISCONNECT"
android:targetPackage="com.tailscale.ipn"
android:targetClass="com.tailscale.ipn.MainActivity" />
</shortcut>
</shortcuts>