2017-09-28 14:53:37 +03:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<!-- 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 -->
|
|
|
|
<uses-permission android:name="android.permission.CHANGE_CONFIGURATION"/>
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:testOnly="false"/>
|
2017-12-13 14:13:13 +03:00
|
|
|
</manifest>
|