1
0
mirror of http://galexander.org/git/simplesshd.git synced 2025-01-07 13:40:54 +00:00
simplesshd/app/src/main/AndroidManifest.xml

54 lines
2.5 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.galexander.sshd">
<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" />
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-feature android:name="android.software.leanback" android:required="false" />
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
<application android:label="SimpleSSHD" android:icon="@drawable/icon"
android:allowBackup="false" android:banner="@drawable/tvbanner"
android:usesCleartextTraffic="true">
<activity android:name="SimpleSSHD" android:label="SimpleSSHD"
android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<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" />
<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>
<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>
</application>
2014-12-18 04:18:27 +00:00
</manifest>