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

Commit a68e17a3 authored by Yorke Lee's avatar Yorke Lee Committed by Android Git Automerger
Browse files

am 7803a759: am c14a4816: Merge "Use ACTION_SENDTO for send sms intent" into mnc-dev

* commit '7803a759':
  Use ACTION_SENDTO for send sms intent
parents 6a7af7a6 7803a759
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() {