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"
|
|
|
|
package="org.galexander.sshd"
|
2014-12-29 21:26:07 +00:00
|
|
|
android:versionCode="2"
|
|
|
|
android:versionName="1.1">
|
2014-12-17 23:56:10 +00:00
|
|
|
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="11" />
|
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" />
|
2014-12-21 20:25:22 +00:00
|
|
|
<application android:label="SimpleSSHD" android:icon="@drawable/icon">
|
2014-12-17 23:38:39 +00:00
|
|
|
<activity android:name="SimpleSSHD" android:label="SimpleSSHD">
|
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>
|
2014-12-17 23:38:39 +00:00
|
|
|
<activity android:name="Settings" android:label="Settings" />
|
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>
|
2014-12-10 21:17:23 +00:00
|
|
|
</application>
|
2014-12-18 04:18:27 +00:00
|
|
|
</manifest>
|