read_otp_plugin 0.0.6
read_otp_plugin: ^0.0.6 copied to clipboard
Reading incoming-and-expected SMS only
read_otp_plugin #
Flutter plugin for reading incoming-and-expected SMS only using read sms permission
Currently developed for Android
**Follow below steps **
1. Add Permission
Add all wanted permissions to your app android/app/src/main/AndroidManifest.xml file:
<uses-permission android:name="android.permission.RECEIVE_SMS" />
<uses-permission android:name="android.permission.READ_SMS" />
2. StartListening
_smsReceiver.startListening(providerName: "Example");
3. UnRegisterListening
_smsReceiver.unRegisterListening();
