Sasa Blagojevic
11/14/2023, 11:22 PMbrandonmcansh
11/14/2023, 11:46 PMSasa Blagojevic
11/15/2023, 12:11 AMUri uri = Uri.parse("smsto:12346556");
Intent it = new Intent(Intent.ACTION_SENDTO, uri);
it.putExtra("sms_body", "Here you can set the SMS text to be sent");
startActivity(it);
and on iOS:
MFMessageComposeViewController
So those would be the equivalent "intent based" approaches.
On Android there is also an option to use SmsManager
but that requires SEND_SMS
permissionjw
11/15/2023, 12:27 AMbrandonmcansh
11/15/2023, 12:30 AMRyan Simon
11/15/2023, 5:18 AM