Используйте эту библиотеку, которая действительно полезна для получения смс
compile 'com.github.stfalcon: smsverifycatcher: 0.3.1'
if(Check yor permission) {
smsVerifyCatcher = new SmsVerifyCatcher(this, new OnSmsCatchListener<String>() {
@Override
public void onSmsCatch(String message) {
String code = message.replaceAll("[^0-9]", "");
//Parse verification code
myTextView.setValue(code + "");
verify.performClick();
}
});
}