Added in API level 1
package

com.ardic.android.managers.appgeneral

Contains classes to manage Application General Operations.

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

	IAppGeneralManager iAgm = AppGeneralManager.getInterface(context);
	iAgm.clearAppData("com.android.browser");
	
alternatively,
	AppGeneralManager.getInterface(context).clearAppData("com.android.browser");
	

Interfaces

IAppGeneralManager Provides a set of APIs to manage application related information and operations. 

Classes

AppGeneralManager Provides IAppGeneralManager interface by calling getInterface(Context) method.