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

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

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

* commit 'c14a4816':
  Use ACTION_SENDTO for send sms intent
parents 3e9a75b7 c14a4816
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -146,7 +146,7 @@ public class IntentUtil {
    }
    }


    public static Intent getSendSmsIntent(CharSequence phoneNumber) {
    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() {
    public static Intent getNewContactIntent() {