W/BroadcastQueue:Appop拒绝:广播意图{act=android.Intent.action.BOOT_已完成

W/BroadcastQueue:Appop拒绝:广播意图{act=android.Intent.action.BOOT_已完成,android,Android,我想请你帮忙。 我遇到了如下棘手的错误,这只发生在特定的设备“LG棉花糖手机” 09-11 16:42:55.725 1654-4655/?W/BroadcastQueue:Appop拒绝:广播意图{act=android.Intent.action.BOOT_COMPLETED flg=0x8000010(有附加项)}从null开始(pid=1654,uid=1000)需要Appop null,因为注册了接收方abc.example.com.countrylist/.bootupurecei

我想请你帮忙。 我遇到了如下棘手的错误,这只发生在特定的设备“LG棉花糖手机”

09-11 16:42:55.725 1654-4655/?W/BroadcastQueue:Appop拒绝:广播意图{act=android.Intent.action.BOOT_COMPLETED flg=0x8000010(有附加项)}从null开始(pid=1654,uid=1000)需要Appop null,因为注册了接收方abc.example.com.countrylist/.bootupureceiver

 <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:permission=“android.permission.RECEIVE\u BOOT\u COMPLETED”

我在Android 6.0上的这条消息和7.0上的一条稍有不同的消息都有问题,但在以前的版本中没有。删除这一行就成功了,应用程序将再次启动。

尝试删除

android:permission=“android.permission.RECEIVE\u BOOT\u COMPLETED”


我在安卓6.0上的这条信息和7.0上的这条信息有点不一样,但在以前的版本上没有。删除这条线就成功了,应用程序重新启动。

你能解决吗?我在三星安卓4.4的旧设备上也遇到了类似的问题。你能解决吗?I f使用安卓4.4的三星旧设备也存在类似问题