A Flutter plugin to Send SMS and MMS on iOS and Android. If iMessage is enabled it will send as iMessage on iOS. This plugin must be tested on a real device on iOS. Maintainer: @rodydavis
Some devices using newer versions of android were returning false for canSend even though they definitely could send SMS. Further, because sendSMS calls canSend internally, it effectively meant the plugin did not work.
Adding this intent to the AndroidManifest.xml for the app meant that canSend returned true as expected.
Some devices using newer versions of android were returning
false
forcanSend
even though they definitely could send SMS. Further, becausesendSMS
callscanSend
internally, it effectively meant the plugin did not work.Adding this intent to the AndroidManifest.xml for the app meant that
canSend
returnedtrue
as expected.