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" />
|
2015-11-09 13:48:20 +00:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
2015-10-30 15:51:24 +00:00
|
|
|
<uses-permission android:name="com.android.vending.BILLING" />
|
2015-10-24 18:01:55 +00:00
|
|
|
|
|
|
|
<application
|
2015-11-02 19:09:04 +00:00
|
|
|
android:name="ApplicationEx"
|
2015-10-24 18:01:55 +00:00
|
|
|
android:allowBackup="false"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/AppTheme">
|
2015-11-04 22:44:17 +00:00
|
|
|
|
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>
|
2015-11-14 08:57:10 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MANAGE_NETWORK_USAGE" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
2015-10-24 18:01:55 +00:00
|
|
|
</activity>
|
|
|
|
|
2015-11-04 22:44:17 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ActivitySettings"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:parentActivityName=".ActivityMain" />
|
|
|
|
|
2015-10-24 18:01:55 +00:00
|
|
|
<service
|
2015-10-29 06:47:12 +00:00
|
|
|
android:name=".SinkholeService"
|
2015-10-24 18:01:55 +00:00
|
|
|
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>
|
2015-11-03 16:42:49 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.PACKAGE_REMOVED" />
|
|
|
|
<data android:scheme="package" />
|
|
|
|
</intent-filter>
|
2015-10-24 18:01:55 +00:00
|
|
|
</receiver>
|
2015-11-07 09:19:47 +00:00
|
|
|
|
|
|
|
<receiver android:name=".Widget">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
|
|
<action android:name="eu.faircode.netguard.APPWIDGET_ON" />
|
|
|
|
<action android:name="eu.faircode.netguard.APPWIDGET_OFF" />
|
|
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
|
|
android:name="android.appwidget.provider"
|
|
|
|
android:resource="@xml/widget" />
|
|
|
|
</receiver>
|
2015-10-24 18:01:55 +00:00
|
|
|
</application>
|
|
|
|
</manifest>
|