android smsmanager lib not working with android 12

Viewed 20

I made a simple app to send SMS with smsManager lib it's working fine with android 10 but when I'm use it on android 12 it's not send just stack into default appenter image description here

fun sendSMS(context: Context, phoneNumber: String, message: String) {
    try {
        SmsManager.getSmsManagerForSubscriptionId(2).sendTextMessage(phoneNumber,null,message,null,null)
    }catch (e:Exception) {
        Toast.makeText(context,e.message,Toast.LENGTH_SHORT).show()
    }
}

}

0 Answers
Related