diff 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
line wrap: on
line diff
--- a/app/src/main/AndroidManifest.xml	Sun Jun 05 12:00:10 2022 -0700
+++ b/app/src/main/AndroidManifest.xml	Sun Jun 05 14:46:41 2022 -0700
@@ -51,7 +51,7 @@
 		android:backupAgent=".service.BackupAgent"
 		android:killAfterRestore="true">
 
-		<activity android:name=".HostListActivity" >
+		<activity android:name=".HostListActivity" android:exported="true">
 			<intent-filter>
 				<action android:name="android.intent.action.MAIN" />
 				<category android:name="android.intent.category.LAUNCHER" />
@@ -70,7 +70,7 @@
 			</intent-filter>
 		</activity>
 
-		<activity android:name=".PubkeyListActivity" android:configChanges="keyboardHidden|orientation" >
+		<activity android:name=".PubkeyListActivity" android:exported="false" android:configChanges="keyboardHidden|orientation" >
 			<intent-filter>
 				<action android:name="org.openintents.ssh.agent.IDENTITY_ADMIN" />
 				<category android:name="android.intent.category.DEFAULT" />
@@ -92,13 +92,14 @@
 
 		<service android:name="com.five_ten_sg.connectbot.service.AuthAgentService"
 			android:description="@string/auth_agent_service_desc"
-			android:permission="org.openintents.ssh.permission.ACCESS_SSH_AGENT">
+			android:permission="org.openintents.ssh.permission.ACCESS_SSH_AGENT"
+			android:exported="true">
 			<intent-filter>
 				<action android:name="org.openintents.ssh.BIND_SSH_AGENT_SERVICE" />
 			</intent-filter>
 		</service>
 
-		<activity android:name=".ConsoleActivity" android:configChanges="keyboardHidden|orientation"
+		<activity android:name=".ConsoleActivity" android:exported="true" android:configChanges="keyboardHidden|orientation"
 			android:theme="@style/NoTitle" android:windowSoftInputMode="stateAlwaysVisible|adjustResize"
 			android:launchMode="singleTop" android:hardwareAccelerated="false">
 			<intent-filter>