2015-10-24 18:01:55 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="eu.faircode.netguard">
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="false"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/AppTheme">
|
2015-10-25 09:29:49 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ActivityMain"
|
2015-10-25 12:26:15 +00:00
|
|
|
android:configChanges="orientation|screenSize"
|
2015-10-25 09:29:49 +00:00
|
|
|
android:launchMode="singleTop">
|
2015-10-24 18:01:55 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
<service
|
|
|
|
android:name=".BlackHoleService"
|
|
|
|
android:permission="android.permission.BIND_VPN_SERVICE">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.net.VpnService" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
2015-10-25 15:16:20 +00:00
|
|
|
<receiver android:name=".Receiver">
|
2015-10-24 18:01:55 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
2015-10-25 13:45:10 +00:00
|
|
|
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
|
2015-10-24 18:01:55 +00:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
</application>
|
|
|
|
</manifest>
|