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"
|
|
20 android:versionName="1.7.2-1"
|
|
21 android:versionCode="1"
|
|
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" />
|
|
66 <data android:scheme="ssh" />
|
|
67 <data android:scheme="telnet" />
|
|
68 <data android:scheme="local" />
|
|
69 </intent-filter>
|
|
70 </activity>
|
|
71
|
|
72 <activity android:name=".PubkeyListActivity" android:configChanges="keyboardHidden|orientation" >
|
|
73 <intent-filter>
|
|
74 <action android:name="org.openintents.ssh.agent.IDENTITY_ADMIN" />
|
|
75 <category android:name="android.intent.category.DEFAULT" />
|
|
76 </intent-filter>
|
|
77 </activity>
|
|
78 <activity android:name=".GeneratePubkeyActivity" android:configChanges="keyboardHidden|orientation" />
|
|
79 <activity android:name=".HostEditorActivity" android:configChanges="keyboardHidden|orientation" />
|
|
80 <activity android:name=".PortForwardListActivity" android:configChanges="keyboardHidden|orientation" />
|
|
81 <activity android:name=".SettingsActivity" android:configChanges="keyboardHidden|orientation" />
|
|
82 <activity android:name=".WizardActivity" android:configChanges="keyboardHidden|orientation" />
|
|
83 <activity android:name=".HelpActivity" android:configChanges="keyboardHidden|orientation" />
|
|
84 <activity android:name=".HelpTopicActivity" android:configChanges="keyboardHidden|orientation" />
|
|
85 <activity android:name=".ColorsActivity" android:configChanges="keyboardHidden|orientation" />
|
|
86 <activity android:name="com.lamerman.FileDialog" android:configChanges="keyboardHidden|orientation" />
|
|
87
|
|
88 <service android:name="com.five_ten_sg.connectbot.service.TerminalManager"
|
|
89 android:configChanges="keyboardHidden|orientation"
|
|
90 android:description="@string/service_desc" />
|
|
91
|
|
92 <service android:name="com.five_ten_sg.connectbot.service.AuthAgentService"
|
|
93 android:description="@string/auth_agent_service_desc"
|
|
94 android:permission="org.openintents.ssh.permission.ACCESS_SSH_AGENT">
|
|
95 <intent-filter>
|
|
96 <action android:name="org.openintents.ssh.BIND_SSH_AGENT_SERVICE" />
|
|
97 </intent-filter>
|
|
98 </service>
|
|
99
|
|
100 <activity android:name=".ConsoleActivity" android:configChanges="keyboardHidden|orientation"
|
|
101 android:theme="@style/NoTitle" android:windowSoftInputMode="stateAlwaysVisible|adjustResize"
|
|
102 android:launchMode="singleTop" android:hardwareAccelerated="false">
|
|
103 <intent-filter>
|
|
104 <action android:name="android.intent.action.VIEW" />
|
|
105 <category android:name="android.intent.category.DEFAULT" />
|
|
106 <category android:name="android.intent.category.BROWSABLE" />
|
|
107 <data android:scheme="ssh" />
|
|
108 <data android:scheme="telnet" />
|
|
109 <data android:scheme="local" />
|
|
110 <!-- format: ssh://user@host:port/#nickname -->
|
|
111 <!-- format: telnet://host:port/#nickname -->
|
|
112 <!-- format: local:// -->
|
|
113 </intent-filter>
|
|
114 </activity>
|
|
115
|
|
116 <meta-data android:name="com.google.android.backup.api_key"
|
|
117 android:value="AEdPqrEAAAAIDlFz9nSUr2g0gSytW0t2cNnYAGHDkptlVohsBA" />
|
|
118
|
|
119 </application>
|
|
120 </manifest>
|