Search code examples
androidandroid-wifi

Android error TYPE_WIFI canot be resolved or is not a field?


  mWifi = connManager.getNetworkInfo(ConnectivityManager.TYPE_WIFI);

TYPE_WIFI canot be resolved or is not a field

i get this error can anyone help me to fix it?


Solution

  • try this Code :

    ConnectivityManager connManager = (ConnectivityManager) this.getSystemService(CONNECTIVITY_SERVICE);
    
    NetworkInfo mWifi = connManager.getNetworkInfo(ConnectivityManager.TYPE_WIFI);
    

    i think you have something wrong with your imports , or the variable mWifi should be a NetworkInfo type. i've tried it and it works for me , so you have something wrong just with your imports , and exaclty the ConnectivityManager