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
After spending more than an hour I found that RECEIVE_SMS permission is required.
RECEIVE_SMS
ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.RECEIVE_SMS}, MY_PERMISSIONS_REQUEST_SMS_RECEIVE);
Prioirty is not required to be set. This should work.