Add a @hide API to indicate 5G and DSDS conflict.

Bug: 152786064
Test: build and manual
Change-Id: I79a8fda5b70a31acc365ebcbb03b73b20d2443fd
This commit is contained in:
Malcolm Chen
2020-04-14 11:19:48 -07:00
parent 855ae008ba
commit e92ce14eb7
2 changed files with 22 additions and 0 deletions

View File

@@ -13238,4 +13238,21 @@ public class TelephonyManager {
public static void enableServiceHandleCaching() {
sServiceHandleCacheEnabled = true;
}
/**
* Whether device can connect to 5G network when two SIMs are active.
* @hide
* TODO b/153669716: remove or make system API.
*/
public boolean canConnectTo5GInDsdsMode() {
ITelephony telephony = getITelephony();
if (telephony == null) return true;
try {
return telephony.canConnectTo5GInDsdsMode();
} catch (RemoteException ex) {
return true;
} catch (NullPointerException ex) {
return true;
}
}
}

View File

@@ -2268,4 +2268,9 @@ interface ITelephony {
* @return operatorinfo on success
*/
String getManualNetworkSelectionPlmn(int subId);
/**
* Whether device can connect to 5G network when two SIMs are active.
*/
boolean canConnectTo5GInDsdsMode();
}