commit | 795c588594b0a38f4dd9fe2e5a3f6a37e607b7e6 | [log] [tgz] |
---|---|---|
author | Qingxi Li <qingxi@google.com> | Wed Jan 31 13:43:27 2018 -0800 |
committer | Qingxi Li <qingxi@google.com> | Wed Jan 31 13:45:15 2018 -0800 |
tree | 160680530d3508424b10fa5ec7e7c67049b438fa | |
parent | acb5fa62d98991ed209ce6d1eeb83620e30bb15f [diff] [blame] |
Add phone ID into UiccSlotInfo. Bug: 72753162 Test: bit TeleServiceTests:* Change-Id: I52c33bebfa10376222e4ddb0adced5982d573a76
diff --git a/src/com/android/phone/PhoneInterfaceManager.java b/src/com/android/phone/PhoneInterfaceManager.java index d658a11..433567f 100644 --- a/src/com/android/phone/PhoneInterfaceManager.java +++ b/src/com/android/phone/PhoneInterfaceManager.java
@@ -4061,7 +4061,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; }