Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 49b7eece authored by Yorke Lee's avatar Yorke Lee
Browse files

Use ACTION_SENDTO for send sms intent

This ensures the default SMS app is correctly launched.

Bug: 22776119

Change-Id: I83610a49d435ba3917225621430b7c8015407f5a
parent ed058349
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -146,7 +146,7 @@ public class IntentUtil {
    }

    public static Intent getSendSmsIntent(CharSequence phoneNumber) {
        return new Intent(Intent.ACTION_VIEW, Uri.parse(SMS_URI_PREFIX + phoneNumber));
        return new Intent(Intent.ACTION_SENDTO, Uri.parse(SMS_URI_PREFIX + phoneNumber));
    }

    public static Intent getNewContactIntent() {