Added in API level 1
package

com.ardic.android.managers.peripheralconfig

Contains classes to manage Peripheral Configurations.

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

	IPeripheralConfigManager iPcm = PeripheralConfigManager.getInterface(context);
	iPcm.setCameraBlocked(true);
	
alternatively,
	PeripheralConfigManager.getInterface(context).setCameraBlocked(true);
	

Interfaces

IPeripheralConfigManager Provides a set of APIs for configurations of peripherals such as camera, usb, storage and sensors. 

Classes