diff options
| -rw-r--r-- | telephony/java/android/telephony/TelephonyManager.java | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/telephony/java/android/telephony/TelephonyManager.java b/telephony/java/android/telephony/TelephonyManager.java index efc2dec69a5d..71ffd6e2ec9f 100644 --- a/telephony/java/android/telephony/TelephonyManager.java +++ b/telephony/java/android/telephony/TelephonyManager.java @@ -14199,7 +14199,8 @@ public class TelephonyManager { UPDATE_AVAILABLE_NETWORKS_MULTIPLE_NETWORKS_NOT_SUPPORTED, UPDATE_AVAILABLE_NETWORKS_NO_OPPORTUNISTIC_SUB_AVAILABLE, UPDATE_AVAILABLE_NETWORKS_REMOTE_SERVICE_EXCEPTION, - UPDATE_AVAILABLE_NETWORKS_SERVICE_IS_DISABLED}) + UPDATE_AVAILABLE_NETWORKS_SERVICE_IS_DISABLED, + UPDATE_AVAILABLE_NETWORKS_SIM_PORT_NOT_AVAILABLE}) public @interface UpdateAvailableNetworksResult {} /** @@ -14258,6 +14259,12 @@ public class TelephonyManager { public static final int UPDATE_AVAILABLE_NETWORKS_SERVICE_IS_DISABLED = 10; /** + * SIM port is not available to switch to opportunistic subscription. + * @hide + */ + public static final int UPDATE_AVAILABLE_NETWORKS_SIM_PORT_NOT_AVAILABLE = 11; + + /** * Set preferred opportunistic data subscription id. * * Switch internet data to preferred opportunistic data subscription id. This api |