Mercurial > 510Connectbot
annotate AndroidManifest.xml @ 395:74d527fe7f5f stable-1.9.0.6
bump version number
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Fri, 19 Sep 2014 12:29:30 -0700 |
parents | 63780d4fa8c3 |
children | ec74f347ab5f |
rev | line source |
---|---|
0 | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- | |
3 ConnectBot: simple, powerful, open-source SSH client for Android | |
4 Copyright 2007 Kenny Root, Jeffrey Sharkey | |
5 | |
6 Licensed under the Apache License, Version 2.0 (the "License"); | |
7 you may not use this file except in compliance with the License. | |
8 You may obtain a copy of the License at | |
9 | |
10 http://www.apache.org/licenses/LICENSE-2.0 | |
11 | |
12 Unless required by applicable law or agreed to in writing, software | |
13 distributed under the License is distributed on an "AS IS" BASIS, | |
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
15 See the License for the specific language governing permissions and | |
16 limitations under the License. | |
17 --> | |
18 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
19 package="com.five_ten_sg.connectbot" | |
395 | 20 android:versionName="1.9.0-6" |
21 android:versionCode="1906" | |
0 | 22 android:installLocation="auto"> |
23 | |
24 <uses-sdk android:targetSdkVersion="15" android:minSdkVersion="8" /> | |
25 | |
26 <uses-permission android:name="android.permission.INTERNET" /> | |
27 <uses-permission android:name="android.permission.VIBRATE" /> | |
28 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | |
29 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | |
30 <uses-permission android:name="android.permission.WAKE_LOCK" /> | |
31 | |
32 <permission | |
33 android:name="org.openintents.ssh.permission.ACCESS_SSH_AGENT" | |
34 android:protectionLevel="dangerous" | |
35 android:permissionGroup="android.permission-group.PERSONAL_INFO" | |
36 android:label="@string/ssh_agent_permission_label" | |
37 android:description="@string/ssh_agent_permission_desc" | |
38 android:icon="@drawable/pubkey"> | |
39 </permission> | |
40 | |
41 <uses-feature android:name="android.hardware.touchscreen" android:required="false"/> | |
42 | |
43 <supports-screens /> | |
44 | |
45 <application | |
46 android:debuggable="true" | |
47 android:icon="@drawable/icon" | |
48 android:label="@string/app_name" | |
49 android:description="@string/app_desc" | |
50 android:allowBackup="false" | |
51 android:backupAgent=".service.BackupAgent" | |
52 android:killAfterRestore="true"> | |
53 | |
54 <activity android:name=".HostListActivity" > | |
55 <intent-filter> | |
56 <action android:name="android.intent.action.MAIN" /> | |
57 <category android:name="android.intent.category.LAUNCHER" /> | |
58 </intent-filter> | |
59 <intent-filter> | |
60 <action android:name="android.intent.action.CREATE_SHORTCUT" /> | |
61 <category android:name="android.intent.category.DEFAULT" /> | |
62 </intent-filter> | |
63 <intent-filter> | |
64 <action android:name="android.intent.action.PICK" /> | |
65 <category android:name="android.intent.category.DEFAULT" /> | |
35
9925ea1aa279
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
66 <data android:scheme="tn5250" /> |
9925ea1aa279
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
67 <data android:scheme="ssh" /> |
0 | 68 <data android:scheme="telnet" /> |
35
9925ea1aa279
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
69 <data android:scheme="local" /> |
0 | 70 </intent-filter> |
71 </activity> | |
72 | |
73 <activity android:name=".PubkeyListActivity" android:configChanges="keyboardHidden|orientation" > | |
74 <intent-filter> | |
75 <action android:name="org.openintents.ssh.agent.IDENTITY_ADMIN" /> | |
76 <category android:name="android.intent.category.DEFAULT" /> | |
77 </intent-filter> | |
78 </activity> | |
79 <activity android:name=".GeneratePubkeyActivity" android:configChanges="keyboardHidden|orientation" /> | |
80 <activity android:name=".HostEditorActivity" android:configChanges="keyboardHidden|orientation" /> | |
81 <activity android:name=".PortForwardListActivity" android:configChanges="keyboardHidden|orientation" /> | |
82 <activity android:name=".SettingsActivity" android:configChanges="keyboardHidden|orientation" /> | |
83 <activity android:name=".WizardActivity" android:configChanges="keyboardHidden|orientation" /> | |
84 <activity android:name=".HelpActivity" android:configChanges="keyboardHidden|orientation" /> | |
85 <activity android:name=".HelpTopicActivity" android:configChanges="keyboardHidden|orientation" /> | |
86 <activity android:name=".ColorsActivity" android:configChanges="keyboardHidden|orientation" /> | |
87 <activity android:name="com.lamerman.FileDialog" android:configChanges="keyboardHidden|orientation" /> | |
88 | |
89 <service android:name="com.five_ten_sg.connectbot.service.TerminalManager" | |
90 android:configChanges="keyboardHidden|orientation" | |
91 android:description="@string/service_desc" /> | |
92 | |
93 <service android:name="com.five_ten_sg.connectbot.service.AuthAgentService" | |
94 android:description="@string/auth_agent_service_desc" | |
95 android:permission="org.openintents.ssh.permission.ACCESS_SSH_AGENT"> | |
96 <intent-filter> | |
97 <action android:name="org.openintents.ssh.BIND_SSH_AGENT_SERVICE" /> | |
98 </intent-filter> | |
99 </service> | |
100 | |
101 <activity android:name=".ConsoleActivity" android:configChanges="keyboardHidden|orientation" | |
102 android:theme="@style/NoTitle" android:windowSoftInputMode="stateAlwaysVisible|adjustResize" | |
103 android:launchMode="singleTop" android:hardwareAccelerated="false"> | |
104 <intent-filter> | |
105 <action android:name="android.intent.action.VIEW" /> | |
106 <category android:name="android.intent.category.DEFAULT" /> | |
107 <category android:name="android.intent.category.BROWSABLE" /> | |
36
bcadd92f5e0a
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
35
diff
changeset
|
108 <data android:scheme="tn5250" /> |
bcadd92f5e0a
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
35
diff
changeset
|
109 <data android:scheme="ssh" /> |
0 | 110 <data android:scheme="telnet" /> |
36
bcadd92f5e0a
start tn5250 integration
Carl Byington <carl@five-ten-sg.com>
parents:
35
diff
changeset
|
111 <data android:scheme="local" /> |
0 | 112 <!-- format: ssh://user@host:port/#nickname --> |
113 <!-- format: telnet://host:port/#nickname --> | |
114 <!-- format: local:// --> | |
115 </intent-filter> | |
116 </activity> | |
117 | |
118 <meta-data android:name="com.google.android.backup.api_key" | |
119 android:value="AEdPqrEAAAAIDlFz9nSUr2g0gSytW0t2cNnYAGHDkptlVohsBA" /> | |
120 | |
121 </application> | |
122 </manifest> |