diff options
| author | 2019-05-02 16:30:42 -0700 | |
|---|---|---|
| committer | 2019-05-10 14:39:11 -0700 | |
| commit | 857c4cbf5fffa9624d9a162b02580ff4e32b41b6 (patch) | |
| tree | 684b46c0750d93fa102837a1202111811b8ed7a0 | |
| parent | a0a72ec4856c4b32f5a4abed99c74319e16aa715 (diff) | |
Update getMergedSubscriberIds to pass subId
Bug: 131189269
Test: manual
Merged-In: I0d237b646969442b71597e66c9cb491c02a144d3
Change-Id: I0d237b646969442b71597e66c9cb491c02a144d3
(cherry picked from commit 973a60d76ec29e7295237ef8b6670f81917b071b)
| -rw-r--r-- | telephony/java/android/telephony/TelephonyManager.java | 12 | ||||
| -rw-r--r-- | telephony/java/com/android/internal/telephony/ITelephony.aidl | 12 |
2 files changed, 18 insertions, 6 deletions
diff --git a/telephony/java/android/telephony/TelephonyManager.java b/telephony/java/android/telephony/TelephonyManager.java index 510e7c9f864f..75a7013730cb 100644 --- a/telephony/java/android/telephony/TelephonyManager.java +++ b/telephony/java/android/telephony/TelephonyManager.java @@ -3783,10 +3783,12 @@ public class TelephonyManager { } /** - * Return the set of subscriber IDs that should be considered as "merged - * together" for data usage purposes. This is commonly {@code null} to - * indicate no merging is required. Any returned subscribers are sorted in a - * deterministic order. + * Return the set of subscriber IDs that should be considered "merged together" for data usage + * purposes. This is commonly {@code null} to indicate no merging is required. Any returned + * subscribers are sorted in a deterministic order. + * <p> + * The returned set of subscriber IDs will include the subscriber ID corresponding to this + * TelephonyManager's subId. * * @hide */ @@ -3795,7 +3797,7 @@ public class TelephonyManager { try { ITelephony telephony = getITelephony(); if (telephony != null) - return telephony.getMergedSubscriberIds(getOpPackageName()); + return telephony.getMergedSubscriberIds(getSubId(), getOpPackageName()); } catch (RemoteException ex) { } catch (NullPointerException ex) { } diff --git a/telephony/java/com/android/internal/telephony/ITelephony.aidl b/telephony/java/com/android/internal/telephony/ITelephony.aidl index 71ea881fbf5d..634d3c62e173 100644 --- a/telephony/java/com/android/internal/telephony/ITelephony.aidl +++ b/telephony/java/com/android/internal/telephony/ITelephony.aidl @@ -1051,7 +1051,17 @@ interface ITelephony { */ String getLine1AlphaTagForDisplay(int subId, String callingPackage); - String[] getMergedSubscriberIds(String callingPackage); + /** + * Return the set of subscriber IDs that should be considered "merged together" for data usage + * purposes. This is commonly {@code null} to indicate no merging is required. Any returned + * subscribers are sorted in a deterministic order. + * <p> + * The returned set of subscriber IDs will include the subscriber ID corresponding to this + * TelephonyManager's subId. + * + * @hide + */ + String[] getMergedSubscriberIds(int subId, String callingPackage); /** * Override the operator branding for the current ICCID. |