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

Commit 261b3b13 authored by Calvin Pan's avatar Calvin Pan Committed by Android (Google) Code Review
Browse files

Merge "Get the resources associated with subid to support MSIM" into qt-dev

parents 6c7a94d6 ea6d2b1e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -5247,7 +5247,7 @@ public class TelephonyManager {
     */
    public String getMmsUserAgent() {
        if (mContext == null) return null;
        return mContext.getResources().getString(
        return SubscriptionManager.getResourcesForSubId(mContext, getSubId()).getString(
                com.android.internal.R.string.config_mms_user_agent);
    }

@@ -5256,7 +5256,7 @@ public class TelephonyManager {
     */
    public String getMmsUAProfUrl() {
        if (mContext == null) return null;
        return mContext.getResources().getString(
        return SubscriptionManager.getResourcesForSubId(mContext, getSubId()).getString(
                com.android.internal.R.string.config_mms_user_agent_profile_url);
    }