Hi adding <uses-permission android:name="android.permission.SET_ANIMATION_SCALE"/> to the debug\AndroidManifest.xml does not work anymore.
It shows the following error:
Permissions with the protection level signature, privileged or signatureOrSystem are only granted to system apps. If an app is a regular non-system app, it will never be able to use these permissions
try adding
testOptions {
animationsDisabled true
}
in your build.gradle, but be aware that this will only have an effect when running tests from the command line.
Hi adding
<uses-permission android:name="android.permission.SET_ANIMATION_SCALE"/>
to thedebug\AndroidManifest.xml
does not work anymore. It shows the following error:Permissions with the protection level signature, privileged or signatureOrSystem are only granted to system apps. If an app is a regular non-system app, it will never be able to use these permissions