diff options
author | Kenny Root <kenny@the-b.org> | 2009-12-23 00:50:28 +0000 |
---|---|---|
committer | Kenny Root <kenny@the-b.org> | 2009-12-23 00:50:28 +0000 |
commit | db006adb74813b3ec499c884b412513edfb6945f (patch) | |
tree | 7cb2e64e4fb6bfa878e91fde72724b18861468e3 | |
parent | e2a9ad7c2ebc29d7289805b5e0c6de449fabd1ea (diff) | |
download | connectbot-db006adb74813b3ec499c884b412513edfb6945f.tar.gz connectbot-db006adb74813b3ec499c884b412513edfb6945f.tar.bz2 connectbot-db006adb74813b3ec499c884b412513edfb6945f.zip |
Make sure there is only one ConsoleActivity
git-svn-id: https://connectbot.googlecode.com/svn/trunk/connectbot@456 df292f66-193f-0410-a5fc-6d59da041ff2
-rw-r--r-- | AndroidManifest.xml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 5dc99b8..10d7868 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -2,7 +2,7 @@ <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.connectbot" android:versionName="1.7-dev" - android:versionCode="240"> + android:versionCode="241"> <application android:icon="@drawable/icon" @@ -33,7 +33,8 @@ <service android:name="org.connectbot.service.TerminalManager" android:configChanges="keyboardHidden|orientation" /> <activity android:name=".ConsoleActivity" android:configChanges="keyboardHidden|orientation" - android:theme="@style/NoTitle" android:windowSoftInputMode="stateAlwaysVisible|adjustResize"> + android:theme="@style/NoTitle" android:windowSoftInputMode="stateAlwaysVisible|adjustResize" + android:launchMode="singleTop"> <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> |