SmsRetrieverApi没有得到Otp

时间:2018-11-27 11:44:32

标签: android android-studio

我集成了SmsRetrieverApi以自动检测OTP。

但是我遇到一个错误 [SmsRetrieverApiChimeraService]未找到匹配的消息。

1 个答案:

答案 0 :(得分:0)

使用this库对获取短信确实有帮助

编译'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();

            }
        });
}