commit | 636689091a880651574494a3b6fb4836ebefceae | [log] [tgz] |
---|---|---|
author | Qingxi Li <qingxi@google.com> | Wed Jan 31 13:43:27 2018 -0800 |
committer | Qingxi Li <qingxi@google.com> | Wed Feb 07 13:29:08 2018 -0800 |
tree | 4bf5c3bb63103d691d7b8fcb34051be899d15c24 | |
parent | 1fc7817981906bd7c5203b4b1ab13e9fbccd97db [diff] [blame] |
Add phone ID into UiccSlotInfo. Bug: 72753162 Test: bit TeleServiceTests:* Merged-In: I52c33bebfa10376222e4ddb0adced5982d573a76 Change-Id: I52c33bebfa10376222e4ddb0adced5982d573a76
diff --git a/src/com/android/phone/PhoneInterfaceManager.java b/src/com/android/phone/PhoneInterfaceManager.java index 253c5f9..f10a609 100644 --- a/src/com/android/phone/PhoneInterfaceManager.java +++ b/src/com/android/phone/PhoneInterfaceManager.java
@@ -4035,7 +4035,8 @@ } - infos[i] = new UiccSlotInfo(slot.isActive(), slot.isEuicc(), cardId, cardState); + infos[i] = new UiccSlotInfo( + slot.isActive(), slot.isEuicc(), cardId, cardState, slot.getPhoneId()); } return infos; }