Added in API level 1
package

com.ardic.android.managers.appcontrol

Contains classes to control Application States and Behavior Operations.

Here is an example of typical code to use Application Control Manager.

	IAppControlManager iAcm = AppControlManager.getInterface(context);
	iAcm.setPackageBlocked("com.android.browser", true);
	
alternatively,
	AppControlManager.getInterface(context).setPackageBlocked("com.android.browser", true);
	

Interfaces

IAppControlManager Provides a set of APIs for controlling application states and behavior. 

Classes

AppControlManager Provides IAppControlManager interface by calling getInterface(Context) method.