-
Notifications
You must be signed in to change notification settings - Fork 658
Expand file tree
/
Copy pathshortcuts.xml
More file actions
25 lines (25 loc) · 1.08 KB
/
Copy pathshortcuts.xml
File metadata and controls
25 lines (25 loc) · 1.08 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
<?xml version="1.0" encoding="utf-8"?>
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
<shortcut
android:shortcutId="enable_vpn"
android:enabled="true"
android:icon="@mipmap/ic_launcher"
android:shortcutShortLabel="@string/shortcut_enable_vpn_short"
android:shortcutLongLabel="@string/shortcut_enable_vpn_long">
<intent
android:action="android.intent.action.VIEW"
android:targetPackage="com.tailscale.ipn"
android:targetClass="com.tailscale.ipn.EnableVpnShortcutActivity" />
</shortcut>
<shortcut
android:shortcutId="disable_vpn"
android:enabled="true"
android:icon="@mipmap/ic_launcher"
android:shortcutShortLabel="@string/shortcut_disable_vpn_short"
android:shortcutLongLabel="@string/shortcut_disable_vpn_long">
<intent
android:action="android.intent.action.VIEW"
android:targetPackage="com.tailscale.ipn"
android:targetClass="com.tailscale.ipn.DisableVpnShortcutActivity" />
</shortcut>
</shortcuts>