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"
|
2016-07-24 16:02:56 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2015-10-24 18:01:55 +00:00
|
|
|
package="eu.faircode.netguard">
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2015-12-01 15:17:28 +00:00
|
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
2015-12-08 13:18:06 +00:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
2015-10-24 18:01:55 +00:00
|
|
|
<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" />
|
2016-01-18 12:07:00 +00:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2016-06-23 15:20:13 +00:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
2015-12-08 13:18:06 +00:00
|
|
|
<!-- http://developer.android.com/guide/topics/security/permissions.html#normal-dangerous -->
|
2015-10-24 18:01:55 +00:00
|
|
|
|
2016-07-24 16:38:59 +00:00
|
|
|
<permission
|
|
|
|
android:name="eu.faircode.netguard.permission.ADMIN"
|
|
|
|
android:description="@string/app_description"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:protectionLevel="signature" />
|
|
|
|
|
|
|
|
<uses-permission android:name="eu.faircode.netguard.permission.ADMIN" />
|
|
|
|
|
2016-07-24 16:02:56 +00:00
|
|
|
<!-- Firebase -->
|
|
|
|
<uses-permission
|
|
|
|
android:name="com.google.android.c2dm.permission.RECEIVE"
|
|
|
|
tools:node="remove" />
|
|
|
|
<uses-permission
|
|
|
|
android:name="eu.faircode.netguard.permission.C2D_MESSAGE"
|
|
|
|
tools:node="remove" />
|
|
|
|
|
2015-11-29 10:37:19 +00:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.wifi"
|
|
|
|
android:required="false" />
|
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.telephony"
|
|
|
|
android:required="false" />
|
|
|
|
<uses-feature
|
|
|
|
android:name="android.software.app_widgets"
|
|
|
|
android:required="false" />
|
2016-08-10 16:08:04 +00:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.touchscreen"
|
|
|
|
android:required="false" />
|
2015-11-29 10:37:19 +00:00
|
|
|
|
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"
|
2016-03-15 11:15:50 +00:00
|
|
|
android:description="@string/app_description"
|
2015-10-24 18:01:55 +00:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
2016-11-06 15:30:40 +00:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
2015-10-24 18:01:55 +00:00
|
|
|
android:supportsRtl="true"
|
2016-11-06 15:30:40 +00:00
|
|
|
android:theme="@style/AppThemeTeal"
|
|
|
|
tools:ignore="ManifestResource">
|
2015-11-04 22:44:17 +00:00
|
|
|
|
2016-07-24 18:30:15 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="firebase_analytics_collection_deactivated"
|
|
|
|
android:value="true" />
|
|
|
|
|
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-11-14 17:11:29 +00:00
|
|
|
android:label="@string/app_name"
|
2016-07-22 11:52:08 +00:00
|
|
|
android:launchMode="singleTop"
|
|
|
|
android:resizeableActivity="true">
|
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>
|
2016-10-20 06:52:15 +00:00
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.app.shortcuts"
|
|
|
|
android:resource="@xml/shortcuts" />
|
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"
|
2016-01-23 16:37:56 +00:00
|
|
|
android:label="@string/menu_settings"
|
2016-02-02 08:01:04 +00:00
|
|
|
android:parentActivityName=".ActivityMain">
|
2016-07-20 04:50:24 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.service.quicksettings.action.QS_TILE_PREFERENCES" />
|
|
|
|
</intent-filter>
|
2016-08-17 15:20:37 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.APPLICATION_PREFERENCES" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
|
2016-02-02 08:01:04 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".ActivityMain" />
|
|
|
|
</activity>
|
2015-11-04 22:44:17 +00:00
|
|
|
|
2016-01-05 12:40:02 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ActivityLog"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2016-01-23 16:37:56 +00:00
|
|
|
android:label="@string/menu_log"
|
2016-02-02 08:01:04 +00:00
|
|
|
android:parentActivityName=".ActivityMain">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".ActivityMain" />
|
|
|
|
</activity>
|
2016-01-05 12:40:02 +00:00
|
|
|
|
2015-12-30 08:58:21 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ActivityPro"
|
|
|
|
android:configChanges="orientation|screenSize"
|
2016-02-02 08:01:04 +00:00
|
|
|
android:label="@string/title_pro"
|
|
|
|
android:parentActivityName=".ActivityMain">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".ActivityMain" />
|
|
|
|
</activity>
|
2015-12-30 08:58:21 +00:00
|
|
|
|
2016-02-13 06:54:44 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ActivityDns"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/setting_show_resolved"
|
|
|
|
android:parentActivityName=".ActivitySettings">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".ActivitySettings" />
|
|
|
|
</activity>
|
|
|
|
|
2016-02-06 15:17:31 +00:00
|
|
|
<activity
|
2016-02-09 09:53:52 +00:00
|
|
|
android:name=".ActivityForwarding"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/setting_forwarding"
|
|
|
|
android:parentActivityName=".ActivitySettings">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".ActivitySettings" />
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".ActivityForwardApproval"
|
2016-02-06 15:17:31 +00:00
|
|
|
android:configChanges="orientation|screenSize"
|
2015-11-22 22:07:25 +00:00
|
|
|
android:label="@string/app_name"
|
2016-02-06 15:17:31 +00:00
|
|
|
android:theme="@style/AppDialog">
|
2015-10-24 18:01:55 +00:00
|
|
|
<intent-filter>
|
2016-02-06 15:17:31 +00:00
|
|
|
<action android:name="eu.faircode.netguard.START_PORT_FORWARD" />
|
|
|
|
<action android:name="eu.faircode.netguard.STOP_PORT_FORWARD" />
|
2015-10-24 18:01:55 +00:00
|
|
|
</intent-filter>
|
2016-02-06 15:17:31 +00:00
|
|
|
</activity>
|
2015-10-24 18:01:55 +00:00
|
|
|
|
2016-02-06 11:25:20 +00:00
|
|
|
<service
|
2016-03-11 06:47:52 +00:00
|
|
|
android:name=".ServiceSinkhole"
|
2016-02-06 15:17:31 +00:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:permission="android.permission.BIND_VPN_SERVICE">
|
2016-02-06 11:25:20 +00:00
|
|
|
<intent-filter>
|
2016-02-06 15:17:31 +00:00
|
|
|
<action android:name="android.net.VpnService" />
|
2016-02-06 11:25:20 +00:00
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
2016-09-26 07:06:08 +00:00
|
|
|
<service
|
|
|
|
android:name=".ServiceExternal"
|
|
|
|
android:label="@string/app_name">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="eu.faircode.netguard.DOWNLOAD_HOSTS_FILE" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
2016-07-10 11:06:09 +00:00
|
|
|
<service
|
2016-07-22 05:59:12 +00:00
|
|
|
android:name=".ServiceTileMain"
|
2016-07-10 11:06:09 +00:00
|
|
|
android:icon="@drawable/ic_security_white_24dp"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.service.quicksettings.action.QS_TILE" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
2016-07-22 05:59:12 +00:00
|
|
|
<service
|
|
|
|
android:name=".ServiceTileGraph"
|
|
|
|
android:icon="@drawable/ic_equalizer_white_24dp"
|
|
|
|
android:label="@string/setting_stats_category"
|
|
|
|
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.service.quicksettings.action.QS_TILE" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
2016-11-11 16:32:16 +00:00
|
|
|
<service
|
|
|
|
android:name=".ServiceTileFilter"
|
|
|
|
android:icon="@drawable/ic_filter_list_white_24dp"
|
|
|
|
android:label="@string/setting_filter"
|
|
|
|
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.service.quicksettings.action.QS_TILE" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
2015-11-14 11:17:57 +00:00
|
|
|
<receiver
|
|
|
|
android:name=".Receiver"
|
2015-11-22 22:07:25 +00:00
|
|
|
android:label="@string/app_name">
|
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>
|
2015-12-25 12:10:00 +00:00
|
|
|
<action android:name="android.intent.action.PACKAGE_ADDED" />
|
2015-11-03 16:42:49 +00:00
|
|
|
<action android:name="android.intent.action.PACKAGE_REMOVED" />
|
2015-12-25 12:10:00 +00:00
|
|
|
|
2015-11-03 16:42:49 +00:00
|
|
|
<data android:scheme="package" />
|
|
|
|
</intent-filter>
|
2015-10-24 18:01:55 +00:00
|
|
|
</receiver>
|
2015-11-07 09:19:47 +00:00
|
|
|
|
2015-11-14 11:17:57 +00:00
|
|
|
<receiver
|
|
|
|
android:name=".Widget"
|
2015-11-22 22:07:25 +00:00
|
|
|
android:label="@string/app_name">
|
2015-11-07 09:19:47 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
|
|
android:name="android.appwidget.provider"
|
|
|
|
android:resource="@xml/widget" />
|
|
|
|
</receiver>
|
2016-07-24 16:38:59 +00:00
|
|
|
|
|
|
|
<receiver
|
|
|
|
android:name=".WidgetAdmin"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:permission="eu.faircode.netguard.permission.ADMIN">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="eu.faircode.netguard.APPWIDGET_ON" />
|
|
|
|
<action android:name="eu.faircode.netguard.APPWIDGET_OFF" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2015-10-24 18:01:55 +00:00
|
|
|
</application>
|
|
|
|
</manifest>
|