Suppress / Block BroadcastReceiver in another app

后端 未结 5 2288
我寻月下人不归
我寻月下人不归 2020-11-27 17:43

Go SMS recently updated with a new feature \"Disable other message notification\". The feature causes other applications listening to the incoming SMS broadcast to not fire.

5条回答
  •  没有蜡笔的小新
    2020-11-27 18:13

    I think we did a fix for that and It worked :) We start the Broadcast Receiver via code

    IntentFilter filter = new IntentFilter();
        filter.addAction("android.provider.Telephony.SMS_RECEIVED");
        filter.setPriority(2147483647);
        receiver = new SmsAnalizer();
        ac.registerReceiver(receiver, filter);
    

    This worked and we get the job done.

提交回复
热议问题