2016-07-09 20:54:11 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="org.purplei2p.i2pd"
|
|
|
|
android:versionCode="1"
|
2016-10-16 12:35:48 +00:00
|
|
|
android:versionName="2.10.0">
|
2016-07-10 01:42:42 +00:00
|
|
|
<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="24"/>
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
|
|
|
<application android:label="@string/app_name" android:allowBackup="true" android:icon="@drawable/icon">
|
|
|
|
<receiver android:name=".NetworkStateChangeReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.net.conn.CONNECTIVITY_CHANGE"/>
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
<activity android:name=".I2PD"
|
2016-07-09 20:54:11 +00:00
|
|
|
android:label="@string/app_name">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2016-07-10 01:42:42 +00:00
|
|
|
<service android:enabled="true" android:name=".ForegroundService"/>
|
2016-07-09 20:54:11 +00:00
|
|
|
</application>
|
|
|
|
</manifest>
|