diff options
author | Arne Schwabe <arne@rfc2549.org> | 2013-12-08 15:06:10 +0100 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2013-12-08 15:06:10 +0100 |
commit | b2019aee1f081e5b1ae1ac56a54172cb2b98b8be (patch) | |
tree | 44d8bb819eb626f0a40280017b32e552be678eca | |
parent | a12468dd17df1eb9cbd7f5c4112c644504e514a5 (diff) |
Create shortcuts with the shortcut activity (closes issue #214)
-rw-r--r-- | AndroidManifest.xml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 9e87e727..19f44a3e 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -147,16 +147,15 @@ </activity> - <activity-alias + <activity android:name=".app.CreateShortcuts" android:label="@string/vpn_shortcut" - android:theme="@android:style/Theme.DeviceDefault.Light.DialogWhenLarge" - android:targetActivity=".LaunchVPN" > + android:theme="@android:style/Theme.DeviceDefault.Light.DialogWhenLarge" > <intent-filter> <action android:name="android.intent.action.CREATE_SHORTCUT" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> - </activity-alias> + </activity> <provider android:name=".FileProvider" |