Added in API level 1
package

com.ardic.android.managers.bluetoothconfig

Contains classes to manage Bluetooth Configuration.

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

	IBluetoothConfigManager iBcm = BluetoothConfigManager.getInterface(context);
	iBcm.setBluetoothBlocked(true);
	
alternatively,
	BluetoothConfigManager.getInterface(context).setBluetoothBlocked(true);
	

Interfaces

IBluetoothConfigManager Provides a set of APIs for bluetooth configurations. 

Classes

BluetoothConfigManager Provides IBluetoothConfigManager interface by calling getInterface(Context) method.