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");
	
  | IAppGeneralManager | Provides a set of APIs to manage application related information and operations. | 
| AppGeneralManager | Provides IAppGeneralManagerinterface by callinggetInterface(Context)method. |