Merge "Update getCardId doc with details" am: a0a72ec485 am: 7ac267a585

am: 6affbeee33

Change-Id: I5e9d662d05155c129c0e34ace9c400bd695c17ad
This commit is contained in:
Jordan Liu
2019-05-07 19:19:33 -07:00
committed by android-build-merger

View File

@@ -140,6 +140,14 @@ public class UiccSlotInfo implements Parcelable {
return mIsEuicc;
}
/**
* Returns the ICCID of the card in the slot, or the EID of an active eUICC.
* <p>
* If the UICC slot is for an active eUICC, returns the EID.
* If the UICC slot is for an inactive eUICC, returns the ICCID of the enabled profile, or the
* root profile if all other profiles are disabled.
* If the UICC slot is not an eUICC, returns the ICCID.
*/
public String getCardId() {
return mCardId;
}