diff options
author | Sean Leonard <meanderingcode@aetherislands.net> | 2013-01-30 22:56:59 -0700 |
---|---|---|
committer | Sean Leonard <meanderingcode@aetherislands.net> | 2013-01-30 22:56:59 -0700 |
commit | 12de321bdd1e6b19dba35b03771f550ce2ddd31c (patch) | |
tree | 42a325219d9b47aaeaacb8215f2cdc031a1282fe /AndroidManifest.xml | |
parent | c849913fba3f5b692309570415f85e9bdb8cceeb (diff) |
Switch the Launcher Activity, resolves #1526
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r-- | AndroidManifest.xml | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index b4df9219..7162576a 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -53,12 +53,6 @@ <activity android:name="se.leap.openvpn.SendDumpActivity" /> <activity android:name="se.leap.openvpn.FileSelect" /> <activity android:name="se.leap.openvpn.MainActivity" > - <intent-filter> - <action android:name="android.intent.action.MAIN" /> - - <category android:name="android.intent.category.BROWSABLE" /> - <category android:name="android.intent.category.LAUNCHER" /> - </intent-filter> </activity> <service @@ -146,6 +140,16 @@ android:authorities="se.leap.openvpn.FileProvider" android:exported="true" android:grantUriPermissions="true" /> + + <activity + android:name="se.leap.leapclient.Dashboard" + android:label="@string/title_activity_dashboard" > + <intent-filter> + <action android:name="android.intent.action.MAIN" /> + + <category android:name="android.intent.category.LAUNCHER" /> + </intent-filter> + </activity> </application> -</manifest> +</manifest>
\ No newline at end of file |