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

Commit cdbb700f authored by Chen Xu's avatar Chen Xu Committed by Gerrit Code Review
Browse files

Merge "Get the resources associated with subid to support MSIM"

parents 83ea055e 6f51e962
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -5224,7 +5224,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);
    }

@@ -5233,7 +5233,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);
    }