Posted on 11-14-2017 07:10 AM
New to Jamf. I'm looking to change some settings in Notability for iOS to disable Giphy content from being accessed by students (as mentioned on this page from their website). I'm hoping it's something easily done on a page I can't find – can someone point me in the right direction? I've downloaded the .plist file but I can't find anywhere to upload this or adjust the package contents of Notability.
Solved! Go to Solution.
Posted on 11-15-2017 08:37 AM
The solution was to remove the header tags:
<dict>
<key>Giphy Allowed</key>
<false/>
</dict>
Thanks for the help!
Posted on 11-14-2017 11:01 AM
Mobile Device Apps ---> Notability ---> App Configuration
Paste the plist contents into that box.
Posted on 11-14-2017 11:19 AM
I thought it might be that but I got an "Incorrect Format Error" when I tried that, so that's when I came here.
Here's the code:
<?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>Giphy Allowed</key>
<false/>
</dict>
</plist>
Posted on 11-15-2017 08:37 AM
The solution was to remove the header tags:
<dict>
<key>Giphy Allowed</key>
<false/>
</dict>
Thanks for the help!