Once you have completed the Education or Business Registration Page and your license request has been approved, you will gain access to an admin panel where you can view your License Key, which will be required to grant access to Notability to your users.
Approvals are processed on business days. If you haven’t heard back from us in 72 hours, contact support at orgsupport@gingerlabs.com.
Copy the license key from your admin page and add it to your Notability MDM App Configuration per the documentation for your MDM platform.
Sample XML Configuration
Replace "true" with "false" to disable a feature, and insert your unique License Key.
To remove a cloud service as an export option, delete the entire <string>.
If you do not wish to restrict data flow to a specific domain, please remove those strings.
<?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>License Key</key>
<string>YOUR_LICENSE_KEY</string> <key>iCloud Allowed</key> <true/>
<key>Link Sharing Allowed</key>
<true/>
<key>Note Gallery Allowed</key>
<true/>
<key>GIF Library Allowed</key>
<true/> <key>Locked Subjects Allowed</key> <true/> <key>Photo Library Allowed</key> <true/> <key>Web Clip Allowed</key> <true/> <key>Allowed Cloud Services</key> <array> <string>GoogleDrive</string> <string>DropBox</string> <string>OneDrive</string> <string>Box</string> <string>WebDAV</string> <string>Email</string>
<string>AirDrop</string> <string>OpenIn</string> </array>
<key>GoogleDrive Allowed Domains</key>
<string>YOUR-DOMAIN</string>
<key>OneDrive Allowed Domains</key>
<string>YOUR-DOMAIN</string>
<key>Box Allowed Domains</key>
<string>YOUR-DOMAIN</string> </dict> </plist>
Some MDM platforms and tiers such as Jamf Pro don't require the <plist>. Instead, you would only keep the text between <dict> and </dict>.
Sample XML for macOS Deployment
For Mac deployments, an additional <key> is required. Don’t forget the extra <dict> & </dict> tags along with any additional configuration keys listed above.
<?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>com.apple.configuration.managed</key>
<dict>
<key>License Key</key>
<string>YOUR_LICENSE_KEY</string>
</dict>
</dict>
</plist>