Whenever I try to use UiAutomation
in any test through getInstrumentation().getUiAutomation()
, the process crashes with this exception:
java.lang.SecurityException: Permission Denial: getIntentSender() from pid=30334, uid=2000, (need uid=1000) is not allowed to send as package android
at android.os.Parcel.readException(Parcel.java:1540)
at android.os.Parcel.readException(Parcel.java:1493)
at android.app.IUiAutomationConnection$Stub$Proxy.disconnect(IUiAutomationConnection.java:225)
at android.app.UiAutomation.disconnect(UiAutomation.java:240)
at android.app.Instrumentation.finish(Instrumentation.java:197)
at android.test.InstrumentationTestRunner.onStart(InstrumentationTestRunner.java:575)
at android.app.Instrumentation$InstrumentationThread.run(Instrumentation.java:1837)
Any idea why? I'm using Gradle through Android Studio, tried various versions, calling it directly through adb
, even without any external dependency (and obviously with at least SDK 18)... Always crashing.
This is the only official example I've found: https://www.youtube.com/watch?v=_SlBHUW0ybM