summaryrefslogtreecommitdiffhomepage
path: root/android/src/main/AndroidManifest.xml
blob: afad4714904c7af2a3c48aae906805cf44ab658a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          xmlns:tools="http://schemas.android.com/tools"
          package="net.mullvad.mullvadvpn">
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
    <uses-permission android:name="android.permission.INTERNET" />
    <application android:label="@string/app_name"
                 android:icon="@mipmap/ic_launcher"
                 android:roundIcon="@mipmap/ic_launcher"
                 android:theme="@style/AppTheme"
                 android:allowBackup="false"
                 tools:ignore="GoogleAppIndexingWarning">
        <activity android:name="net.mullvad.mullvadvpn.ui.MainActivity"
                  android:label="@string/app_name"
                  android:configChanges="orientation"
                  android:screenOrientation="portrait"
                  android:windowSoftInputMode="adjustPan">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.service.quicksettings.action.QS_TILE_PREFERENCES" />
            </intent-filter>
        </activity>
        <service android:name="net.mullvad.mullvadvpn.service.MullvadVpnService"
                 android:permission="android.permission.BIND_VPN_SERVICE">

            <intent-filter>
                <action android:name="android.net.VpnService" />
            </intent-filter>
            <intent-filter>
                <action android:name="net.mullvad.mullvadvpn.connect_action" />
            </intent-filter>
            <intent-filter>
                <action android:name="net.mullvad.mullvadvpn.disconnect_action" />
            </intent-filter>
        </service>
        <service android:name="net.mullvad.mullvadvpn.service.MullvadTileService"
                 android:label="@string/app_name"
                 android:icon="@drawable/small_logo_black"
                 android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">

            <intent-filter>
                <action android:name="android.service.quicksettings.action.QS_TILE" />
            </intent-filter>
        </service>
    </application>
</manifest>