OTP (token) should be automatically read from the message

I will recommend you not to use any third party libraries for auto fetch OTP from SMS Inbox. This can be done easily if you have basic understanding of Broadcast Receiver and how it works. Just Try following approach : Create single interface i.e SmsListner package com.wnrcorp.reba; public interface SmsListener { public void messageReceived(String messageText); … Read more