我想問你的幫助。 我遇到了如下棘手的錯誤,只發生在某個設備「LG棉花糖手機」。W/BroadcastQueue:Appop拒絕:廣播意圖{act = android.intent.action.BOOT_COMPLETED
< Logcat message> 09-11 16:42:55.725 1654-4655 /? W/BroadcastQueue:Appop Denial:廣播Intent {act = android.intent.action.BOOT_COMPLETED flg = 0x8000010(has extras)} from null(pid = 1654,uid = 1000)由於註冊的接收者需要appop null abc.example.com .countrylist/.BootUpReceiver。
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<receiver android:name=".BootUpReceiver"
android:enabled="true"
android:exported="false"
android:permission ="android.permission.RECEIVE_BOOT_COMPLETED">
<intent-filter android:priority="999" >
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
你的一種提示對我來說是非常有幫助的。 感謝您的評論和反饋。
你能解決嗎?我面對與Android 4.4三星舊設備類似的問題 – Amos