Flutter | Send SMS in the background
Apr 29, 2023
Send an SMS through your Flutter app automatically.
Note — > This package doesn't work: flutter_sms
Requirements (Imports)
- Permission_handler package from pub dev
- Background SMS package from pub dev
Add the following permissions to 👇.
android > app > src > main > AndroidManifest.xml
The SEND_SMS
permission is required to send SMS messages, and the READ_PHONE_STATE
permission is to get the phone number of the device.
Modify build.gradle
android > app > build.gradle
Now we can send a message to test.
Create a Function👇 to call whenever you send an SMS.