fluttercommunity / flutter_sms

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
https://fluttercommunity.github.io/flutter_sms/
MIT License
246 stars 191 forks source link

doesn't work on android 14 device #89

Open rifathossain82 opened 8 months ago

rifathossain82 commented 8 months ago

I tried with the attached example code. on emulator it works, but on my android 14 device it's not working. After that I check into android 9, 10 and it's works for them.

is there any update about this plugin? How can I fix this issue?


Note: I added the permissions correctly. here it is:

    <uses-permission android:name="android.permission.SEND_SMS" />
    <queries>
        <intent>
            <action android:name="android.intent.action.SENDTO" />
            <data android:scheme="smsto"/>
        </intent>
    </queries>