Dedicated Device Example Template

This custom template is intended for creating Dedicated Device policy to be deployed on to Android devices.

Dedicated devices are company-owned devices that fulfill a single use case, such as digital signage, ticket printing, or inventory management. This allows admins to further lock down the usage of a device to a single app or small set of apps, and prevents users from enabling other apps or performing other actions on the device. For more information on Dedicated Devices, see

Kiosk management.

To modify the custom template to personalize, complete the following steps:

  1. From the MCM application click Create Policy and select Custom from Template.
  2. On the General Settings page, enter the Policy Name and Description.
  3. Select Android as the Operating System.
  4. From the Assign Policy to Site drop-down, select a site to assign the policy.
  5. From the Select a policy from template drop-down, select Dedicated Device Example Template.
  6. This policy snippet includes the recommended device settings for a dedicated device with minimal access. Edit the packageName and installType to customize the applications that needs to be installed through this policy.
{
	"safeBootDisabled": true,
	"screenCaptureDisabled": true,
	"factoryResetDisabled": true,
	"cameraDisabled": true,
		"systemUpdate": {
		"type": "WINDOWED",
		"startMinutes": 120,
		"endMinutes": 240
	},
	"kioskCustomLauncherEnabled": true,
	"keyguardDisabled": true,
	"applications": [
	{
         "packageName":"com.olacabs.oladriver",
         "installType":"FORCE_INSTALLED",
         "defaultPermissionPolicy":"GRANT"
      },
      {
         "packageName":"com.screencast",
         "installType":"FORCE_INSTALLED"
      },
      {
         "packageName":"com.android.chrome",
         "installType":"FORCE_INSTALLED",
         "defaultPermissionPolicy":"GRANT"
      },
      {
         "packageName":"org.mozilla.firefox",
         "installType":"FORCE_INSTALLED",
         "defaultPermissionPolicy":"GRANT"
      },
      {
         "packageName":"com.ubercab",
         "installType":"FORCE_INSTALLED",
         "defaultPermissionPolicy":"GRANT"
      },
      {
         "packageName":"com.jio.media.jiobeats",
         "installType":"FORCE_INSTALLED",
         "defaultPermissionPolicy":"GRANT"
      },
      {
         "packageName":"com.microsoft.office.outlook",
         "installType":"FORCE_INSTALLED",
         "managedConfiguration":{
            "com.microsoft.outlook.EmailProfile.EmailAddress":"johndoe@hcl.com",
            "com.microsoft.outlook.EmailProfile.EmailAccountName":"John Doe",
            "com.microsoft.outlook.EmailProfile.ServerHostName":"outlook.office365.com",
			"com.microsoft.outlook.EmailProfile.EmailUPN": "prod\\John Doe" 
        }
      }
	]
}