I would like to be able to disable camera activation when a user double presses the power button. I am running the MDM in Kiosk Mode.
I know I can disable the camera completely by not allowing the system camera in the config but I may need to use the camera in my app in the future.
A quick search brought up this solution for an MDM:
DevicePolicyManager dpm = (DevicePolicyManager) getSystemService(Context.DEVICE_POLICY_SERVICE); ComponentName adminComponent = new ComponentName(this, MyDeviceAdminReceiver.class); dpm.setKeyguardDisabledFeatures(adminComponent, DevicePolicyManager.KEYGUARD_DISABLE_SHORTCUTS);
Is this available in Headwind MDM?
Thank you