diff options
| author | 2021-10-01 20:58:30 +0000 | |
|---|---|---|
| committer | 2021-11-16 13:42:26 +0000 | |
| commit | fb1b6a3056bfbef1ad514701f49c7703a1658d47 (patch) | |
| tree | 8102e0aa038bc929ec79dc0fc26a2c11a9d7bd73 | |
| parent | 999147b4ab95ef71551736edc379f40cd0921d87 (diff) | |
[MEP] Platform initial support for eSim Multiple Enabled Profiles.
Port concept is introduced to support MEP feature. Refactoring UiccController, UiccCard, and
UiccProfile to add UiccPort between UiccCard and UiccProfile. Most of the UiccCard functioning is
moved to UiccPort.
Added default port index value of uicc card.
Bug: 199559346
Test: Manual
Change-Id: Iaf6af6d5573976a6f85a36570900fb03778e1909
Merged-In: Iaf6af6d5573976a6f85a36570900fb03778e1909
| -rw-r--r-- | telephony/java/android/telephony/TelephonyManager.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/telephony/java/android/telephony/TelephonyManager.java b/telephony/java/android/telephony/TelephonyManager.java index 6ffdc6b1696d..a1d68b215ba5 100644 --- a/telephony/java/android/telephony/TelephonyManager.java +++ b/telephony/java/android/telephony/TelephonyManager.java @@ -315,6 +315,12 @@ public class TelephonyManager { */ public static final int UNINITIALIZED_CARD_ID = -2; + /** + * Default port index for the UICC Card + * @hide + */ + public static final int DEFAULT_PORT_INDEX = 0; + private final Context mContext; private final int mSubId; @UnsupportedAppUsage |