2019-02-13 15:08:35 +00:00
|
|
|
<manifest
|
|
|
|
package="org.mozilla.fenix"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
2019-03-22 21:19:10 +00:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
2019-07-08 16:00:29 +00:00
|
|
|
<!-- Allows unlocking your device and activating its screen so UI tests can succeed -->
|
|
|
|
<uses-permission android:name="android.permission.DISABLE_KEYGUARD"/>
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK"/>
|
|
|
|
|
|
|
|
<!-- Allows for storing and retrieving screenshots -->
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
|
|
|
|
<!-- Allows changing locales -->
|
2019-10-09 16:17:49 +00:00
|
|
|
<uses-permission android:name="android.permission.CHANGE_CONFIGURATION"
|
|
|
|
tools:ignore="ProtectedPermissions" />
|
2019-03-22 21:19:10 +00:00
|
|
|
|
2019-02-13 15:08:35 +00:00
|
|
|
<application
|
|
|
|
tools:replace="android:name"
|
2020-07-02 02:14:41 +00:00
|
|
|
android:name="org.mozilla.fenix.DebugFenixApplication" />
|
2019-10-09 16:17:49 +00:00
|
|
|
|
|
|
|
</manifest>
|