Added in API level 1
package

com.ardic.android.managers.appinstall

Contains classes to manage Application Installation Operations.

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

	IAppInstallManager iAim = AppInstallManager.getInterface(context);
	iAim.uninstall("com.acme.example");
	
alternatively,
	AppInstallManager.getInterface(context).uninstall("com.acme.example");
	

Interfaces

IAppInstallManager Provides a set APIs to manage applications silent installation and uninstallation. 

Classes

AppInstallManager Provides IAppInstallManager interface by calling getInterface(Context) method.