Category filter
Configuration profile for iOS app lock mode
Typically, organizations like schools and businesses want to limit how their pupils or employees can use their iOS devices to only the one app that is necessary for them. This can be achieved by deploying a custom configuration profile. Hexnode allows IT admins to remotely deploy this configuration profile to multiple iOS devices enrolled in the UEM via the Deploy Custom Configuration feature.
Configuration profile to lock the device to a single app
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
<?xml version=”1.0” encoding=”UTF-8”?> <!DOCTYPE plist PUBLIC “-//Apple//DTD PLIST 1.0//EN” “http://www.apple.com/DTDs/PropertyList-1.0.dtd”> <plist version=”1.0”> <dict> <key>PayloadContent</key> <array> <dict> <key>App</key> <dict> <key>Identifier</key> <string>ENTER BUNDLE ID OF APP HERE</string> </dict> <key>PayloadIdentifier</key> <string>com.example.applockpayload</string> <key>PayloadType</key> <string>com.apple.app.lock</string> <key>PayloadUUID</key> <string>gc4c8fjj-bae0-7fd1-a57c-341ab98n4h50</string> <key>PayloadVersion</key> <integer>1</integer> </dict> </array> <key>PayloadDisplayName</key> <string>Single App Mode</string> <key>PayloadIdentifier</key> <string>com.example.configprofile</string> <key>PayloadType</key> <string>Configuration</string> <key>PayloadUUID</key> <string>743u875p-9327-8498-hh68-7le5fe12ess6</string> <key>PayloadVersion</key> <integer>1</integer> </dict> </plist> |
In the configuration profile, specify the bundle ID of the app you want to lock the device down to.
What happens at the device end?
Once the policy and custom configuration are associated, the specified app automatically launches on the device and cannot be exited until the profile is removed. The home button is in a disabled state, and the device returns to the app automatically upon waking or restarting. You also no longer have access to the Control Center, settings app, and notifications, even from the lock screen.