comparison app/src/main/AndroidManifest.xml @ 496:f698820bffdf

add socket2 monitor protocol
author Carl Byington <carl@five-ten-sg.com>
date Sun, 05 Jun 2022 14:46:41 -0700
parents c7a947e291db
children 73fa7329dc87
comparison
equal deleted inserted replaced
495:c7a947e291db 496:f698820bffdf
49 android:description="@string/app_desc" 49 android:description="@string/app_desc"
50 android:allowBackup="false" 50 android:allowBackup="false"
51 android:backupAgent=".service.BackupAgent" 51 android:backupAgent=".service.BackupAgent"
52 android:killAfterRestore="true"> 52 android:killAfterRestore="true">
53 53
54 <activity android:name=".HostListActivity" > 54 <activity android:name=".HostListActivity" android:exported="true">
55 <intent-filter> 55 <intent-filter>
56 <action android:name="android.intent.action.MAIN" /> 56 <action android:name="android.intent.action.MAIN" />
57 <category android:name="android.intent.category.LAUNCHER" /> 57 <category android:name="android.intent.category.LAUNCHER" />
58 </intent-filter> 58 </intent-filter>
59 <intent-filter> 59 <intent-filter>
68 <data android:scheme="telnet" /> 68 <data android:scheme="telnet" />
69 <data android:scheme="local" /> 69 <data android:scheme="local" />
70 </intent-filter> 70 </intent-filter>
71 </activity> 71 </activity>
72 72
73 <activity android:name=".PubkeyListActivity" android:configChanges="keyboardHidden|orientation" > 73 <activity android:name=".PubkeyListActivity" android:exported="false" android:configChanges="keyboardHidden|orientation" >
74 <intent-filter> 74 <intent-filter>
75 <action android:name="org.openintents.ssh.agent.IDENTITY_ADMIN" /> 75 <action android:name="org.openintents.ssh.agent.IDENTITY_ADMIN" />
76 <category android:name="android.intent.category.DEFAULT" /> 76 <category android:name="android.intent.category.DEFAULT" />
77 </intent-filter> 77 </intent-filter>
78 </activity> 78 </activity>
90 android:configChanges="keyboardHidden|orientation" 90 android:configChanges="keyboardHidden|orientation"
91 android:description="@string/service_desc" /> 91 android:description="@string/service_desc" />
92 92
93 <service android:name="com.five_ten_sg.connectbot.service.AuthAgentService" 93 <service android:name="com.five_ten_sg.connectbot.service.AuthAgentService"
94 android:description="@string/auth_agent_service_desc" 94 android:description="@string/auth_agent_service_desc"
95 android:permission="org.openintents.ssh.permission.ACCESS_SSH_AGENT"> 95 android:permission="org.openintents.ssh.permission.ACCESS_SSH_AGENT"
96 android:exported="true">
96 <intent-filter> 97 <intent-filter>
97 <action android:name="org.openintents.ssh.BIND_SSH_AGENT_SERVICE" /> 98 <action android:name="org.openintents.ssh.BIND_SSH_AGENT_SERVICE" />
98 </intent-filter> 99 </intent-filter>
99 </service> 100 </service>
100 101
101 <activity android:name=".ConsoleActivity" android:configChanges="keyboardHidden|orientation" 102 <activity android:name=".ConsoleActivity" android:exported="true" android:configChanges="keyboardHidden|orientation"
102 android:theme="@style/NoTitle" android:windowSoftInputMode="stateAlwaysVisible|adjustResize" 103 android:theme="@style/NoTitle" android:windowSoftInputMode="stateAlwaysVisible|adjustResize"
103 android:launchMode="singleTop" android:hardwareAccelerated="false"> 104 android:launchMode="singleTop" android:hardwareAccelerated="false">
104 <intent-filter> 105 <intent-filter>
105 <action android:name="android.intent.action.VIEW" /> 106 <action android:name="android.intent.action.VIEW" />
106 <category android:name="android.intent.category.DEFAULT" /> 107 <category android:name="android.intent.category.DEFAULT" />