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-09 12:12:00 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ProfileDetailActivity"
|
|
|
|
android:label=""
|
|
|
|
android:parentActivityName=".ProfileListActivity" />
|
2017-08-09 14:30:25 +02:00
|
|
|
<activity
|
|
|
|
android:name=".ProfileEditActivity"
|
|
|
|
android:label="@string/edit_activity_title" />
|
2017-08-09 10:23:25 +02:00
|
|
|
<activity android:name=".ProfileListActivity">
|
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-09 14:34:28 +02:00
|
|
|
<activity
|
|
|
|
android:name=".SettingsActivity"
|
|
|
|
android:label="@string/settings" />
|
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-07-30 08:48:57 +02:00
|
|
|
<service
|
|
|
|
android:name=".ProfileService"
|
|
|
|
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>
|