Turning on wifi using WifiManager stops to work on Android 10
问题 I have following code which used to work well pre Android 10. But it is not able to turn wifi on in Android 10 devices. WifiManager wifiMgr = (WifiManager) getApplicationContext().getSystemService(Context.WIFI_SERVICE); boolean res = wifiMgr.setWifiEnabled(true); //res value is set to false above because setWifiEnabled returns false on Android 10 Following are my permissions in AndroidManifest.xml <uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/> <uses-permission