

2·
1 year agoI also noticed that the keyboard backlight doesn’t work anymore and I no longer get GPU temps in the Freon Gnome extension.
I also noticed that the keyboard backlight doesn’t work anymore and I no longer get GPU temps in the Freon Gnome extension.
Incorrect. If you aren’t using WifiManager
, you don’t need ACCESS_WIFI_STATE
or location permissions. ConnectivityManager gives information to know the connection type with only ACCESS_NETWORK_STATE
, which is granted automatically on install without prompting the user to allow.
And besides that, you should really be checking ConnectivityManager.isActiveNetworkMetered()
instead of the connection type anyway, since the user could be on tethered wifi, for instance.
You can determine if there’s an active Internet connection without checking the wifi info.
That did the trick. Thank you so much!