Looking for Goodnotes configuration to deactivate AI-features on device

AyOne
New Contributor III

Hello,

we like to configure Goodnotes for students without the AI-features. We also activated the auto-back-up-reminder and pre-configured a webdav-url.

Can anyone help me with deactivating the AI-features? What do we need to add to make the AI-features configurable?

This is our working Code:
<plist>
<dict>
<key>LicenseKey</key>
<string>LICENSE CODE</string>
<key>GoodnotesVersion</key>
<integer>6</integer>
<key>ConfigurableFeatures</key>
<dict>
<key>ReminderToEnableAutoBackup</key>
<true/>
<key>WebDAVHostURL</key>
<string>WEBDAV DOMAIN</string>
</dict>
</dict>
</plist>

7 REPLIES 7

AJPinto
Esteemed Contributor

I did not see any documentation from GoodNotes other than how to deploy the product key with a Configuration Profile. I recommend reaching out to GoodNotes to ask them if there is a key pare that can disable their AI functions.

AyOne
New Contributor III

I already reached out to them and got the code above. Seems like the code doens't work. I hoped for getting someone with a similar code to find what's not right in the code above.

GregBobbett
Contributor III

So looking at your code compared to the code we use, do you have or did they give you what to replace the bolded text in <string>WEBDAV DOMAIN</string>? That to me seems like a 'place your specific info here' item. I'd be interested in if you find that out as I'm sure I'm going to need to follow suit to turn off the AI in our GoofNotes as well.

Greg Bobbett

AyOne
New Contributor III

I have replaced the Code. The Code above is the working code. But it dont includes the settings for the AI features. I like to add them. I'm also still in contact with goodnotes, but they are slow ...

I got the following Code from the support, but it dont work or us. I added it in the right section. 

<key>ConfigurableFeatures</key>
<dict>
<key>ScribbleToEraseAllowed</key> 
<true/>
<key>CircleToLassoAllowed</key> 
<true/>
<key>Others</key>
<false/>
</dict>


AyOne
New Contributor III

The list of the AI features is also uncomplete.

After some digging myself, it looks like the AI has to be turned on/off by Goodnotes through your license. Or at least that's the way I read what I found. But maybe that includes the <key> addition to the <plist> script they sent AFTER they activate in in your account. Again, I'll be very interested if you get it worked out!

Good luck and thanks!

Greg Bobbett

AyOne
New Contributor III

I got a reply and the following code works. Just change "false" with true to activate a feature. In this code you can pre-configure the WebDAV-Domain, activate a backup reminder and activate the AI-On-Device features:

<plist>
<dict>
<key>LicenseKey</key>
<string>LICENSE-CODE</string>
<key>ConfigurableFeatures</key>
<dict>
<key>ReminderToEnableAutoBackup</key>
<true/>
<key>WebDAVHostURL</key>
<string>WEBDAV-DOMAIN</string>
<key>OnDeviceAI</key>
<dict>
<key>ScribbleToEraseAllowed</key>
<true/>
<key>CircleToLassoAllowed</key>
<true/>
<key>SpellcheckAllowed</key>
<false/>
<key>WordCompleteAllowed</key>
<false/>
<key>MathConversionAllowed</key>
<false/>
<key>MathAssistanceAllowed</key>
<false/>
</dict>
</dict>
</dict>
</plist>