Added in API level 1
package

com.ardic.android.managers.wificonfig

Contains classes to manage Wifi Configurations.

Here is an example of typical code to use Wifi Configuration Manager.

	IWifiConfigManager iWcm = WifiConfigManager.getInterface(context);
	iWcm.setWifiStateChangeBlocked(true);
	
alternatively,
	WifiConfigManager.getInterface(context).setWifiStateChangeBlocked(true);
	

Interfaces

IWifiConfigManager Provides a set of APIs for Wi-Fi control. 

Classes

WifiConfigManager Provides IWifiConfigManager interface by calling getInterface(Context) method.