admob_flutter icon indicating copy to clipboard operation
admob_flutter copied to clipboard

Permission error and breaks the app

Open bishalstha opened this issue 5 years ago • 1 comments

This occurs irregularly but does occur. It show the following error on the console.

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

bishalstha avatar Feb 17 '20 16:02 bishalstha

I have same problem:

E: uses-permission (line=14)
                 A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET")
               E: uses-permission (line=15)
                 A: android:name(0x01010003)="android.permission.REQUEST_INSTALL_PACKAGES" (Raw: "android.permission.REQUEST_INSTALL_PACKAGES")
               E: uses-permission (line=16)
                 A: android:name(0x01010003)="android.permission.READ_EXTERNAL_STORAGE" (Raw: "android.permission.READ_EXTERNAL_STORAGE")
               E: uses-permission (line=17)
                 A: android:name(0x01010003)="android.permission.ACCESS_NETWORK_STATE" (Raw: "android.permission.ACCESS_NETWORK_STATE")
               E: uses-permission (line=18)
                 A: android:name(0x01010003)="android.permission.WAKE_LOCK" (Raw: "android.permission.WAKE_LOCK")
               E: uses-permission (line=19)
                 A: android:name(0x01010003)="com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE" (Raw: "com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE")
               E: uses-permission (line=20)
                 A: android:name(0x01010003)="com.google.android.c2dm.permission.RECEIVE" (Raw: "com.google.android.c2dm.permission.RECEIVE")

~~They should write somewhere which permissions we needs to add for using this package~~

Edit: Ok my bad, there is no special permissions needed they merge manifest with the SDK (i think). I fix my problem with adding this in the manifest: https://developers.google.com/admob/android/quick-start?hl=fr#update_your_androidmanifestxml

oom- avatar Mar 21 '20 14:03 oom-