2017-07-29 06:10:37 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-01-01 09:06:37 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-07-30 09:01:38 +02:00
|
|
|
package="com.wireguard.android"
|
|
|
|
android:installLocation="internalOnly">
|
|
|
|
|
2018-07-24 19:32:40 +02:00
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
2018-01-01 09:06:37 +01:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2017-07-30 09:01:38 +02:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
2018-04-30 18:36:56 +02:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2017-07-31 05:47:24 +02:00
|
|
|
|
2020-01-23 15:31:44 +01:00
|
|
|
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
|
2020-03-22 08:11:54 +01:00
|
|
|
<uses-feature android:name="android.software.leanback" android:required="false" />
|
|
|
|
<uses-feature android:name="android.hardware.camera" android:required="false" />
|
2020-01-23 15:31:44 +01:00
|
|
|
|
2018-06-04 02:50:08 +02:00
|
|
|
<permission
|
2018-07-07 19:04:34 +02:00
|
|
|
android:name="${applicationId}.permission.CONTROL_TUNNELS"
|
2018-09-06 01:33:42 +02:00
|
|
|
android:description="@string/permission_description"
|
2018-06-04 02:50:08 +02:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/permission_label"
|
2018-09-06 01:33:42 +02:00
|
|
|
android:protectionLevel="dangerous" />
|
2018-06-04 02:50:08 +02:00
|
|
|
|
2017-07-29 06:10:37 +02:00
|
|
|
<application
|
2018-01-01 09:06:37 +01:00
|
|
|
android:name=".Application"
|
2017-07-29 06:10:37 +02:00
|
|
|
android:allowBackup="false"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
2017-07-31 05:47:24 +02:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
2017-07-29 06:10:37 +02:00
|
|
|
android:supportsRtl="true"
|
2018-04-28 21:40:22 +02:00
|
|
|
android:theme="@style/AppTheme"
|
2020-03-22 08:11:54 +01:00
|
|
|
android:banner="@mipmap/banner">
|
2017-11-25 04:13:55 +01:00
|
|
|
|
2019-12-14 20:05:28 +01:00
|
|
|
<activity android:name=".activity.TunnelToggleActivity" android:theme="@style/NoBackgroundTheme"/>
|
2020-03-24 07:42:25 +01:00
|
|
|
|
2018-01-01 09:06:37 +01:00
|
|
|
<activity android:name=".activity.MainActivity">
|
2017-07-29 13:09:55 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
2020-01-22 20:41:56 +01:00
|
|
|
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
|
2017-07-29 13:09:55 +02:00
|
|
|
</intent-filter>
|
2017-11-29 00:33:32 +01:00
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.service.quicksettings.action.QS_TILE_PREFERENCES" />
|
|
|
|
</intent-filter>
|
2017-07-29 13:09:55 +02:00
|
|
|
</activity>
|
2017-11-27 00:43:34 +01:00
|
|
|
|
2017-11-27 04:28:48 +01:00
|
|
|
<activity
|
2018-01-01 09:06:37 +01:00
|
|
|
android:name=".activity.SettingsActivity"
|
2018-01-10 23:51:55 +01:00
|
|
|
android:label="@string/settings"
|
2018-12-18 11:45:37 +01:00
|
|
|
android:parentActivityName=".activity.MainActivity" />
|
2017-11-27 04:28:48 +01:00
|
|
|
|
2017-08-09 14:34:28 +02:00
|
|
|
<activity
|
2018-01-01 09:06:37 +01:00
|
|
|
android:name=".activity.TunnelCreatorActivity"
|
2018-01-10 23:51:55 +01:00
|
|
|
android:label="@string/create_activity_title"
|
|
|
|
android:parentActivityName=".activity.MainActivity" />
|
2018-01-01 09:06:37 +01:00
|
|
|
|
2018-07-24 19:32:40 +02:00
|
|
|
<activity
|
|
|
|
android:name="com.journeyapps.barcodescanner.CaptureActivity"
|
|
|
|
android:screenOrientation="fullSensor"
|
|
|
|
tools:replace="screenOrientation" />
|
|
|
|
|
2020-03-24 07:42:25 +01:00
|
|
|
<activity android:name=".activity.LogViewerActivity"
|
|
|
|
android:label="@string/log_viewer_title">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
<provider
|
|
|
|
android:name=".activity.LogViewerActivity$ExportedLogContentProvider"
|
|
|
|
android:authorities="${applicationId}.exported-log"
|
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true" />
|
|
|
|
|
2018-01-01 09:06:37 +01:00
|
|
|
<receiver android:name=".BootShutdownReceiver">
|
2017-07-30 09:01:38 +02:00
|
|
|
<intent-filter>
|
2018-01-01 09:06:37 +01:00
|
|
|
<action android:name="android.intent.action.ACTION_SHUTDOWN" />
|
2017-07-30 09:01:38 +02:00
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2018-06-04 02:50:08 +02:00
|
|
|
<receiver
|
|
|
|
android:name=".model.TunnelManager$IntentReceiver"
|
2018-07-07 19:04:34 +02:00
|
|
|
android:permission="${applicationId}.permission.CONTROL_TUNNELS">
|
2018-04-23 16:37:42 +02:00
|
|
|
<intent-filter>
|
2018-06-04 02:50:08 +02:00
|
|
|
<action android:name="com.wireguard.android.action.REFRESH_TUNNEL_STATES" />
|
|
|
|
<action android:name="com.wireguard.android.action.SET_TUNNEL_UP" />
|
|
|
|
<action android:name="com.wireguard.android.action.SET_TUNNEL_DOWN" />
|
2018-04-23 16:37:42 +02:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2017-08-17 12:45:40 +02:00
|
|
|
<service
|
|
|
|
android:name=".QuickTileService"
|
|
|
|
android:icon="@drawable/ic_tile"
|
|
|
|
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
|
2018-01-01 09:06:37 +01:00
|
|
|
|
2017-08-17 12:45:40 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.service.quicksettings.action.QS_TILE" />
|
|
|
|
</intent-filter>
|
2017-11-25 04:13:55 +01:00
|
|
|
|
2017-08-17 12:45:40 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.service.quicksettings.ACTIVE_TILE"
|
2018-01-01 09:06:37 +01:00
|
|
|
android:value="false" />
|
2017-08-17 12:45:40 +02:00
|
|
|
</service>
|
2017-07-29 06:10:37 +02:00
|
|
|
</application>
|
|
|
|
</manifest>
|