Runtimeexception Unable To Start Activity: Permission Denial: Broadcast From Android Asks To Run As User -1 But Is Calling From User 0
Faced with the error from Google report (Android 9): Fatal Exception: java.lang.RuntimeException Unable to start activity: java.lang.SecurityException: Permission Denial: broadcas
Solution 1:
Add this android:protectionLevel="signature" in your manifest .
For more details, you can check Permission-Element
Like:
<permissionandroid:name="android.permission.INTERACT_ACROSS_USERS_FULL"android:protectionLevel="signature"/>
Post a Comment for "Runtimeexception Unable To Start Activity: Permission Denial: Broadcast From Android Asks To Run As User -1 But Is Calling From User 0"