SMS Broadcast Receiver not working

前端 未结 4 1606
不知归路
不知归路 2021-01-23 08:33

Alright, I have tried every solution on Stack and nothing works.My current method registers the \"SmsListener\" receiver from the MainActivity. All I\'m trying to do is initiali

4条回答
  •  北海茫月
    2021-01-23 08:47

    After spending more than an hour I found that RECEIVE_SMS permission is required.

    ActivityCompat.requestPermissions(this, 
                new String[]{Manifest.permission.RECEIVE_SMS},
                MY_PERMISSIONS_REQUEST_SMS_RECEIVE);
    

    Prioirty is not required to be set. This should work.

提交回复
热议问题