I need to get mobile network setting state in WearOS: "Always on" or "Auto" or "Always off".
Exactly need to differentiate these states in code
maybe there is a way through ConnectivityManager
or TelephonyManager
or Settings.Secure
?
I've also checked that in system logs we have:
PhoneDataStore: putInt(mobile_networks_radio_power_key, 1) -> Always on
PhoneDataStore: putInt(mobile_networks_radio_power_key, 2) -> Always off
PhoneDataStore: putInt(mobile_networks_radio_power_key, 0) -> Auto
RadioModemPreference: onPreferenceClicked() key = RADIO_MODEM_ALLWAYS_ON
RadioModemPreference: onPreferenceClicked() key = RADIO_MODEM_ALLWAYS_OFF
RadioModemPreference: onPreferenceClicked() key = RADIO_MODEM_AUTO
Maybe there is a way to access PhoneDataStore from apps?