Managing Features with Managed App Configuration
What is managed app configuration?
MDM servers can send XML files that configure apps to managed devices. An app's developer must add support for reading these files. Once a config file is received by a device, iOS notifies the app that its settings have changed, and the app changes accordingly. To learn more, see this guide from Apple. Before moving forward, please read this guide on how to manage licenses safely.What features can I disable?
-
These will affect the kind of resources that can be attached to iDoceo (paper clip icon)
- Audio Recording Allowed
- Photo Library Allowed
- Camera Allowed
- Cloud Links Allowed
- Synchronization Allowed
- Backups Allowed
- Dropbox Backups Allowed
- One Drive Backups Allowed
- Google Backups Allowed
- WebDAV Backups Allowed
This will remove the synchronization options completely
This will remove all/some backup options
This Google link also affects iDoceo Connect and YouTube availability
What is the default setting for all these options?
By default, all these options are allowed (set to TRUE). An empty file will have no effect on the available features in iDoceoI need to disable a feature not shown above
Drop us a line at This email address is being protected from spambots. You need JavaScript enabled to view it. explaining what you need and we will try to add it in our next updateAdditional options, populating configurations
If you'd like users to find a preset configuration in either the Timelines, the Periods or the Holidays, you can do so by adding a special key calledThese are the available special fields:
- Period Names
- Holidays
- Timelines
Configuring Timelines
<key>Timelines</key>
<array> <string>10:00</string>
<string>11:00</string>
<string>15:00</string>
<string>17:00</string> </array>
Configuring Period Names
<key>Period Names</key>
<array><string>Pre-School</string>
<string>Registration</string>
<string>Period 1</string>
<string>Period 2</string>
<string>Breaktime</string>
</array>
Configuring Holidays
The date format is YY/MM/DD<key>Holidays</key> <array>
<string>22/01/01</string>
<string>22/12/31</string>
<string>22/07/04</string> </array>
How do I make a configuration file?
Configuration files are XML dictionaries that contain specific keys and values defined by an app's developer. iDoceo configuration files can be used like so:To disable access to creating audio recordings, add an entry in the plist name "Audio Recording Allowed" and set the feature's value to "false". For steps on sending a configuration file to managed devices, please see your MDM software's documentation.
<?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>Audio Recording Allowed</key> <false/> </dict> </plist>