Added in API level 1
package

com.ardic.android.managers.systemconfig

Contains classes to manage System Configurations.

Here is an example of typical code to use System Configuration Manager.

	ISystemConfigManager iScm = SystemConfigManager.getInterface(context);
	iScm.setScreenshotBlocked(true);
	
alternatively,
	SystemConfigManager.getInterface(context).setScreenshotBlocked(true);
	

Interfaces

ISystemConfigManager Provides a set of APIs for system related configurations. 

Classes

SystemConfigManager Provides ISystemConfigManager interface by calling getInterface(Context) method.