flutter_sms icon indicating copy to clipboard operation
flutter_sms copied to clipboard

Unable to send sms, currently not configured to sms error

Open devgeektech opened this issue 3 years ago • 2 comments

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>

devgeektech avatar Jun 09 '22 07:06 devgeektech

I had that problem as well, but I did a flutter clean and it started working.

johnwargo avatar Jun 18 '22 00:06 johnwargo

This is still broken and a flutter clean doesn't fix it for me.

davidpanic avatar Mar 10 '23 15:03 davidpanic