Skip to content

Commit cd3ec73

Browse files
author
Wink Saville
committed
Add getAvailableNetworks.
To allow a operator test to pass we need to manually select a network. Therefore getAvailableNetworks needs to be implemented on CDMALTEPhone so that RIL_REQUEST_QUERY_AVAILABLE_NETWORKS is sent to the RIL/radio. Bug: 5420630 Change-Id: I8e138b211d42755399a9e30f3e45dde2f579401e
1 parent be25d5b commit cd3ec73

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

telephony/java/com/android/internal/telephony/cdma/CDMALTEPhone.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,11 @@ public String getMsisdn() {
245245
return mIccRecords.getMsisdnNumber();
246246
}
247247

248+
@Override
249+
public void getAvailableNetworks(Message response) {
250+
mCM.getAvailableNetworks(response);
251+
}
252+
248253
@Override
249254
public void requestIsimAuthentication(String nonce, Message result) {
250255
mCM.requestIsimAuthentication(nonce, result);

0 commit comments

Comments
 (0)