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);
| IAppControlManager | Provides a set of APIs for controlling application states and behavior. |
| AppControlManager | Provides IAppControlManager interface by calling getInterface(Context) method. |