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"
|
2017-07-30 09:01:38 +02:00
|
|
|
package="com.wireguard.android"
|
|
|
|
android:installLocation="internalOnly">
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
2017-07-31 05:47:24 +02:00
|
|
|
|
2017-07-29 06:10:37 +02:00
|
|
|
<application
|
|
|
|
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"
|
|
|
|
android:theme="@android:style/Theme.Material.Light.DarkActionBar">
|
2017-08-13 14:24:03 +02:00
|
|
|
<activity android:name=".ConfigActivity">
|
2017-07-29 13:09:55 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2017-08-16 00:36:11 +02:00
|
|
|
<activity
|
2017-08-22 08:27:29 +02:00
|
|
|
android:name=".AddActivity"
|
2017-08-16 00:36:11 +02:00
|
|
|
android:label="@string/edit_activity_title" />
|
2017-08-09 14:34:28 +02:00
|
|
|
<activity
|
|
|
|
android:name=".SettingsActivity"
|
2017-08-17 12:45:40 +02:00
|
|
|
android:label="@string/settings">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.service.quicksettings.action.QS_TILE_PREFERENCES" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2017-07-30 08:48:57 +02:00
|
|
|
|
2017-07-30 09:01:38 +02:00
|
|
|
<receiver android:name=".BootCompletedReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
</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">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.service.quicksettings.action.QS_TILE" />
|
|
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
|
|
android:name="android.service.quicksettings.ACTIVE_TILE"
|
|
|
|
android:value="true" />
|
|
|
|
</service>
|
2017-07-30 08:48:57 +02:00
|
|
|
<service
|
2017-08-13 14:24:03 +02:00
|
|
|
android:name=".VpnService"
|
2017-07-30 08:48:57 +02:00
|
|
|
android:exported="false" />
|
2017-07-29 06:10:37 +02:00
|
|
|
</application>
|
2017-07-31 05:47:24 +02:00
|
|
|
|
2017-07-29 06:10:37 +02:00
|
|
|
</manifest>
|