-1

I want to send message in my app but i don't want to use permission (send_sms) in Manifest.

I want to use (Intent) for send message.

v.sh
  • 1

1 Answers1

1
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("sms:"
                        + phoneNumber)));

Send SMS in android

Community
  • 1
  • 1
VVB
  • 7,363
  • 7
  • 49
  • 83