flutter_sms
flutter_sms copied to clipboard
Unable to send sms, currently not configured to sms error
PlatformException(device_not_capable, The current device is not capable of sending text messages., A device may be unable to send messages if it does not support messaging or if it is not currently configured to send messages. This only applies to the ability to send text messages via iMessage, SMS, and MMS., null)
I have even added the below code in Manifest-
<uses-permission android:name="android.permission.SEND_SMS" />
<queries>
<intent>
<action android:name="android.intent.action.SENDTO" />
<data android:scheme="smsto"/>
</intent>
</queries>
I had that problem as well, but I did a flutter clean and it started working.
This is still broken and a flutter clean doesn't fix it for me.