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