这个问题表明你的应用程序正在试图发送被系统限制的广播。你需要将广播发送更改为受系统允许的类型,或者在Manifest中请求权限以发送该广播。以下代码演示如何请求发送一个自定义广播:
在Manifest中添加以下行:
在代码中发送广播:
Intent intent = new Intent("com.example.SOME_ACTION");
intent.putExtra("data", "hello world");
intent.setPackage("com.example.otherapp");
context.sendBroadcast(intent, "android.permission.SEND_CUSTOM_BROADCAST");
这将发送一个名为“com.example.SOME_ACTION”的自定义广播,并在发送之前请求了“android.permission.SEND_CUSTOM_BROADCAST”权限。请注意,“setPackage”方法指定接收广播的应用程序包名。