auto_sms_verification 0.0.8 copy "auto_sms_verification: ^0.0.8" to clipboard
auto_sms_verification: ^0.0.8 copied to clipboard

PlatformAndroid

Flutter package for automatic OTP verification using SMS Retriever API, enhancing user experience on Android.

auto_sms_verification #

With the auto_sms_verification plugin, you can perform SMS-based user verification in your Android app automatically, without requiring the user to manually type verification codes, and without requiring any extra app permissions.

Please check the original doc as well https://developers.google.com/identity/sms-retriever/overview

Getting Started #

Import package #

import 'package:auto_sms_verification/auto_sms_verification.dart';  

Get Signature Code #

Please add this Signature Code at the end of the OTP SMS.

var appSignature = await AutoSmsVerification.appSignature();  

Add Widget #

Listen for SMS; it will return the SMS text, which you can then use to extract the OTP.

void _startListeningOtpCode() async {  
 var sms = await AutoSmsVerification.startListeningSms(); _smsCode = getCode(sms) ?? '';}  

Call function in initState

@override  
void initState() {  
	super.initState(); 
	_startListeningOtpCode();
}  

Ensure to stop listening for SMS in the dispose function to prevent memory leaks and unnecessary background processes.

@override  
void dispose() { 
	AutoSmsVerification.stopListening(); 
	super.dispose(); 
}  

Parse OTP from SMS #

String? getCode(String? sms) {  
	if (sms != null) { 
		final intRegex = RegExp(r'\d+', multiLine: true); 
		final code = intRegex.allMatches(sms).first.group(0); 
		return code; 
	} 
	return null;
}  

Example Sms #

<#> MyApp: your one time code is 5664  
fr4edrDVWsr  
7
likes
150
points
196
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter package for automatic OTP verification using SMS Retriever API, enhancing user experience on Android.

Repository (GitHub)

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on auto_sms_verification