AndroidManifest.xml (1171B)
1 <!-- This Source Code Form is subject to the terms of the Mozilla Public 2 - License, v. 2.0. If a copy of the MPL was not distributed with this 3 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 4 5 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 6 xmlns:tools="http://schemas.android.com/tools"> 7 8 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> 9 <!-- Allows unlocking your device and activating its screen so UI tests can succeed --> 10 <uses-permission android:name="android.permission.DISABLE_KEYGUARD"/> 11 <uses-permission android:name="android.permission.WAKE_LOCK"/> 12 13 <!-- Allows for storing and retrieving screenshots --> 14 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" 15 android:maxSdkVersion="32" /> 16 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" 17 android:maxSdkVersion="28" /> 18 19 <application 20 tools:replace="android:name" 21 android:name="org.mozilla.fenix.DebugFenixApplication"> 22 23 <activity android:name="androidx.activity.ComponentActivity" /> 24 </application> 25 26 </manifest>