summaryrefslogtreecommitdiffhomepage
path: root/android/app/src/debug/AndroidManifest.xml
blob: e1a8f8be40b7c27e17989abd3403733d8e8c5218 (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
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">

    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

    <application android:label="@string/app_name"
        android:icon="@mipmap/ic_launcher"
        android:roundIcon="@mipmap/ic_launcher"
        android:theme="@style/AppTheme"
        android:extractNativeLibs="true"
        android:allowBackup="false"
        android:banner="@drawable/banner"
        android:name=".MullvadApplication"
        tools:ignore="GoogleAppIndexingWarning">
        <activity android:name="net.mullvad.mullvadvpn.TestActivity"
            android:label="@string/app_name"
            android:launchMode="singleTask"
            android:configChanges="orientation|screenSize|screenLayout"
            android:screenOrientation="locked"
            android:windowSoftInputMode="adjustPan"
            android:exported="true">
        </activity>
    </application>
</manifest>