Security Exception: android.permission.INTERACT_ACROSS_USERS

Just ran into this exception from my PID app in Android Monitor, without doing anything special. The first time I see such a thing, any explanation / documents? thank

java.lang.SecurityException: Permission Denial: 
    broadcast from android asks to run as user -1 but is calling from user 0;
    this requires android.permission.INTERACT_ACROSS_USERS_FULL or 
    android.permission.INTERACT_ACROSS_USERS
+4
source share
1 answer

One possible solution is to turn off autocomplete, but it only works on Android Oreo. Check out this link Disable Android O AutoFill for the app

0
source

Source: https://habr.com/ru/post/1648151/


All Articles