aboutsummaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorKyle Horimoto <khorimoto@gmail.com>2015-10-01 10:48:56 -0700
committerKyle Horimoto <khorimoto@gmail.com>2015-10-01 10:48:56 -0700
commita6c1a06578694fce6ee7e2460e3ab0df88d35276 (patch)
tree85f6929e3749e6ea19ca726446b8ba2da6fbcd54 /app
parent8f03cfeb51904905f351a9e1894b8a64a087b097 (diff)
downloadconnectbot-a6c1a06578694fce6ee7e2460e3ab0df88d35276.tar.gz
connectbot-a6c1a06578694fce6ee7e2460e3ab0df88d35276.tar.bz2
connectbot-a6c1a06578694fce6ee7e2460e3ab0df88d35276.zip
Remove launcher intent-filter.
Diffstat (limited to 'app')
-rw-r--r--app/src/main/AndroidManifest.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index b528acd..e863b21 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -46,7 +46,10 @@
android:name=".HostListActivity"
android:label="@string/title_hosts_list"
android:launchMode="singleTop">
-
+ <intent-filter android:label="@string/app_name">
+ <action android:name="android.intent.action.MAIN"/>
+ <category android:name="android.intent.category.LAUNCHER"/>
+ </intent-filter>
<intent-filter>
<action android:name="android.intent.action.CREATE_SHORTCUT"/>
<category android:name="android.intent.category.DEFAULT"/>
@@ -84,10 +87,7 @@
<activity
android:name=".EditHostActivity"
android:label="@string/title_host_editor">
- <intent-filter android:label="@string/app_name">
- <action android:name="android.intent.action.MAIN"/>
- <category android:name="android.intent.category.LAUNCHER"/>
- </intent-filter>
+
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="org.connectbot.HostListActivity"/>