
* https://gist.github.com/xrigau/11284124 * https://gist.github.com/xrigau/ea8d306e0a751fafb1e6 * https://artemzin.com/blog/easiest-way-to-give-set_animation_scale-permission-for-your-ui-tests-on-android/ * https://github.com/finn-no/android_emulator_hacks * https://gist.github.com/caipivara/9371a79a7222a156ddad
8 lines
398 B
XML
8 lines
398 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- This file should be outside of release manifest (in this case app/src/mock/Manifest.xml -->
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<!--required to enable/disable system animations from the app itself during Espresso test runs-->
|
|
<uses-permission android:name="android.permission.SET_ANIMATION_SCALE"/>
|
|
</manifest>
|