2014-12-10 21:17:23 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-12-29 05:18:29 +00:00
|
|
|
package="org.galexander.sshd">
|
2014-12-16 22:56:34 +00:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2014-12-18 04:18:27 +00:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
2019-05-26 04:20:38 +00:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
2019-05-27 01:23:56 +00:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2019-09-21 18:55:44 +00:00
|
|
|
<uses-feature android:name="android.software.leanback" android:required="false" />
|
|
|
|
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
|
2019-06-17 03:40:32 +00:00
|
|
|
<application android:label="SimpleSSHD" android:icon="@drawable/icon"
|
2019-09-21 21:36:18 +00:00
|
|
|
android:allowBackup="false" android:banner="@drawable/tvbanner"
|
|
|
|
android:usesCleartextTraffic="true">
|
2016-10-16 20:09:15 +00:00
|
|
|
<activity android:name="SimpleSSHD" android:label="SimpleSSHD"
|
|
|
|
android:launchMode="singleTask">
|
2014-12-10 21:17:23 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2019-09-21 18:55:44 +00:00
|
|
|
<activity android:name="SimpleSSHDTV" android:label="SimpleSSHD"
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:theme="@style/Theme.Leanback">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2014-12-17 23:38:39 +00:00
|
|
|
<activity android:name="Settings" android:label="Settings" />
|
2019-09-21 21:36:18 +00:00
|
|
|
<activity android:name="DocActivity" android:label="Documentation" />
|
|
|
|
<activity android:name="DocActivityTV" android:label="Documentation"
|
|
|
|
android:theme="@style/Theme.Leanback" />
|
2014-12-16 14:52:42 +00:00
|
|
|
<service android:name="SimpleSSHDService"
|
2014-12-16 14:55:54 +00:00
|
|
|
android:label="SimpleSSHDService" />
|
2014-12-18 04:18:27 +00:00
|
|
|
<receiver android:name="BootReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2019-09-01 19:03:35 +00:00
|
|
|
<receiver android:name="StartReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="org.galexander.sshd.START" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
<receiver android:name="StopReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="org.galexander.sshd.STOP" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2014-12-10 21:17:23 +00:00
|
|
|
</application>
|
2014-12-18 04:18:27 +00:00
|
|
|
</manifest>
|