Loading telephony/java/android/telephony/TelephonyManager.java +28 −0 Original line number Original line Diff line number Diff line Loading @@ -3792,6 +3792,34 @@ public class TelephonyManager { } } } } /** * Returns the Status of Volte *@hide */ public boolean isVolteEnabled() { try { return getITelephony().isVolteEnabled(); } catch (RemoteException ex) { return false; } catch (NullPointerException ex) { return false; } } /** * Returns the Status of Wi-Fi Calling *@hide */ public boolean isWifiCallingEnabled() { try { return getITelephony().isWifiCallingEnabled(); } catch (RemoteException ex) { return false; } catch (NullPointerException ex) { return false; } } /** /** * Set TelephonyProperties.PROPERTY_ICC_OPERATOR_NUMERIC for the default phone. * Set TelephonyProperties.PROPERTY_ICC_OPERATOR_NUMERIC for the default phone. * * Loading telephony/java/com/android/internal/telephony/ITelephony.aidl +12 −0 Original line number Original line Diff line number Diff line Loading @@ -872,6 +872,18 @@ interface ITelephony { */ */ boolean isImsRegistered(); boolean isImsRegistered(); /** * Returns the Status of Wi-Fi Calling *@hide */ boolean isWifiCallingEnabled(); /** * Returns the Status of Volte *@hide */ boolean isVolteEnabled(); /** /** * Returns the unique device ID of phone, for example, the IMEI for * Returns the unique device ID of phone, for example, the IMEI for * GSM and the MEID for CDMA phones. Return null if device ID is not available. * GSM and the MEID for CDMA phones. Return null if device ID is not available. Loading Loading
telephony/java/android/telephony/TelephonyManager.java +28 −0 Original line number Original line Diff line number Diff line Loading @@ -3792,6 +3792,34 @@ public class TelephonyManager { } } } } /** * Returns the Status of Volte *@hide */ public boolean isVolteEnabled() { try { return getITelephony().isVolteEnabled(); } catch (RemoteException ex) { return false; } catch (NullPointerException ex) { return false; } } /** * Returns the Status of Wi-Fi Calling *@hide */ public boolean isWifiCallingEnabled() { try { return getITelephony().isWifiCallingEnabled(); } catch (RemoteException ex) { return false; } catch (NullPointerException ex) { return false; } } /** /** * Set TelephonyProperties.PROPERTY_ICC_OPERATOR_NUMERIC for the default phone. * Set TelephonyProperties.PROPERTY_ICC_OPERATOR_NUMERIC for the default phone. * * Loading
telephony/java/com/android/internal/telephony/ITelephony.aidl +12 −0 Original line number Original line Diff line number Diff line Loading @@ -872,6 +872,18 @@ interface ITelephony { */ */ boolean isImsRegistered(); boolean isImsRegistered(); /** * Returns the Status of Wi-Fi Calling *@hide */ boolean isWifiCallingEnabled(); /** * Returns the Status of Volte *@hide */ boolean isVolteEnabled(); /** /** * Returns the unique device ID of phone, for example, the IMEI for * Returns the unique device ID of phone, for example, the IMEI for * GSM and the MEID for CDMA phones. Return null if device ID is not available. * GSM and the MEID for CDMA phones. Return null if device ID is not available. Loading