Sample Property List Configuration
One method of setting key-value pair assignments is through an XML property list, or plist. The plist contains the key-value pair assignments that an MDM provider sends to a mobile app to enforce security configurations.
Here is a sample plist:
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3<plist version="1.0">
4<dict>
5 <key>AppServiceHosts</key>
6 <array>
7 <string>host1</string>
8 <string>host2</string>
9 </array>
10 <key>AppServiceHostLabels</key>
11 <array>
12 <string>Production</string>
13 <string>Sandbox</string>
14 </array>
15 <key>RequireCertAuth</key>
16 <true/>
17 <key>ClearClipboardOnBackground</key>
18 <false/>
19 <key>OnlyShowAuthorizedHosts</key>
20 <false/>
21</dict>
22</plist>