Skip to main content
Solved

Upload .plist file to application

  • November 14, 2017
  • 3 replies
  • 48 views

Forum|alt.badge.img+6

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.

Best answer by bananapatata

The solution was to remove the header tags:

<dict> <key>Giphy Allowed</key> <false/>
</dict>

Thanks for the help!

3 replies

boberito
Forum|alt.badge.img+22
  • Jamf Heroes
  • November 14, 2017

Mobile Device Apps ---> Notability ---> App Configuration

Paste the plist contents into that box.


Forum|alt.badge.img+6
  • Author
  • Contributor
  • November 14, 2017

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>


Forum|alt.badge.img+6
  • Author
  • Contributor
  • Answer
  • November 15, 2017

The solution was to remove the header tags:

<dict> <key>Giphy Allowed</key> <false/>
</dict>

Thanks for the help!