Sending intent to BroadcastReceiver from adb

前端 未结 8 1749
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-29 20:26

I\'ve got BroadcastReceiver class:

public class IntentReceiver extends BroadcastReceiver {

    final String tag = \"Intent Intercepter\";

    @Override
            


        
8条回答
  •  迷失自我
    2020-11-29 21:05

    Another thing to keep in mind: Android 8 limits the receivers that can be registered via manifest (e.g., statically)

    https://developer.android.com/guide/components/broadcast-exceptions

提交回复
热议问题