aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenny Root <kenny@the-b.org>2010-08-05 03:06:17 +0000
committerKenny Root <kenny@the-b.org>2010-08-05 03:06:17 +0000
commit403ba510a8a39205b3cc0602cd91437e67e3b0a4 (patch)
tree3762257e8ec40e017d187c6c214ff973759f98bc
parente1d220ea1c4b133c84a03c077c3cb63b547528cc (diff)
downloadconnectbot-403ba510a8a39205b3cc0602cd91437e67e3b0a4.tar.gz
connectbot-403ba510a8a39205b3cc0602cd91437e67e3b0a4.tar.bz2
connectbot-403ba510a8a39205b3cc0602cd91437e67e3b0a4.zip
Add a description for the service
git-svn-id: https://connectbot.googlecode.com/svn/trunk/connectbot@512 df292f66-193f-0410-a5fc-6d59da041ff2
-rw-r--r--AndroidManifest.xml6
-rw-r--r--res/values/strings.xml1
2 files changed, 5 insertions, 2 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 149ee4a..20b3bf8 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.0-rc1"
- android:versionCode="305"
+ android:versionCode="306"
android:installLocation="auto">
<application
@@ -34,7 +34,9 @@
<activity android:name=".HelpTopicActivity" android:configChanges="keyboardHidden|orientation" />
<activity android:name=".ColorsActivity" android:configChanges="keyboardHidden|orientation" />
- <service android:name="org.connectbot.service.TerminalManager" android:configChanges="keyboardHidden|orientation" />
+ <service android:name="org.connectbot.service.TerminalManager"
+ android:configChanges="keyboardHidden|orientation"
+ android:description="@string/service_desc" />
<activity android:name=".ConsoleActivity" android:configChanges="keyboardHidden|orientation"
android:theme="@style/NoTitle" android:windowSoftInputMode="stateAlwaysVisible|adjustResize"
diff --git a/res/values/strings.xml b/res/values/strings.xml
index d489338..80fb813 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -20,6 +20,7 @@
<resources>
<string name="app_desc">Simple, powerful, open-source SSH client.</string>
+ <string name="service_desc">Maintains SSH connections and loaded pubkeys</string>
<!-- Window title for the Host List -->
<string name="title_hosts_list">Hosts</string>