Posted on 09-29-2016 09:22 AM
I am looking for the code for the Configuration dictionary for IXL iOS app to set the custom domain in the app. There is a setting for it in iOS Settings - IXL. Unfortunately IXL is anot aware of how to set this via MDM commands.
Posted on 06-16-2017 07:24 AM
Hey @gil.anspacher have you gotten anywhere with this? We need to do the exact same thing.
Posted on 06-16-2017 07:33 AM
No, unfortunately tech support at IXL was unfamiliar with this and I could not get to their iOS dev team.
The good news is that you can save it in the app prefs. I had a student tech enter it in each device.
Posted on 06-16-2017 10:42 AM
@gil.anspacher Gotcha, we've been doing it that way the past few years...just figured I'd try to make it more streamlined. I'm a little confused - is this a function that has to be "enabled" with an App's code, or is it a product of the JSS that can be applied to any app deployment if you write the .plist correctly?
Posted on 06-19-2017 11:09 AM
@kempt Yup, same here. Not sure how this works on the backend. Perhaps just writing to the plist.
Posted on 09-14-2017 08:31 AM
Anyone have an update for this?
Posted on 04-30-2018 08:37 AM
Any update on this?
Posted on 07-30-2018 04:39 AM
Update:
After contacting IXL support I got a response that worked for us. You should be able to use the following and modify it to your own needs:
<dict>
<key>Remember Me</key>
<true/>
<key>Custom Sign-in @</key>
<string>YOUR CUSTOM SIGN IN</string>
</dict>
If you don't want "Remember me" on then you can replace <true/> with <false/>, and of course whatever you put where it says "YOUR CUSTOM SIGN IN" will be what shows up in the app preferences.
I should also mention that after you set your desired preferences, you must start the IXL app for them to get picked up. While testing it on several iPads I noticed that it was not populating until I did that.
Posted on 03-25-2024 08:40 AM
This worked for me perfectly, just remember to put in the <plist> </plist> at the beginning and end of the script.
<plist>
<dict>
<key>Remember Me</key>
<true/>
<key>Custom Sign-in @</key>
<string>YOUR CUSTOM SIGN IN</string>
</dict>
</plist>
Posted on 09-26-2019 01:48 PM
In case anybody comes across this post, like me. IXL has changed the order of the custom app config. This is from their support. The IXL app version at the time is 4.7.0
The following is the documentation that we have available to guide MDM setup for iPad. The IXL iPad app is compatible with all MDM providers. You can sync the Custom Domain and Remember Me settings by saving the IXL settings file in the App Configuration preferences of your MDM. You can use the following settings file to sync the Custom Domain and Remember Me settings with your MDM: <dict> <key>Custom Sign-in @</key> <string>CUSTOM DOMAIN</string> <key>Remember Me</key> <true/> <key>Date Last Synced</key> <string>TODAY’S DATE</string> </dict> You can replace CUSTOM DOMAIN with your school’s custom domain text (excluding the @ symbol). If the custom domain lines are not included in the file, managed apps will have no custom domain. The Remember Me line can be either <true/> for on or <false/> for off. With the Remember me feature on, students will remain signed in to their accounts forever. With the Remember me feature off, students will be signed out of their accounts if they haven’t used the app for 10 minutes. By default, downloading the app sets Remember Me feature on. Please note that while the exact date format does not matter, the TODAY’S DATE value should be updated each time these settings are edited. This is necessary in order for the settings to be sent out when a change is made.
Posted on 05-06-2020 07:44 AM
Posted on 08-16-2024 04:59 AM
The IXL iPad app is compatible with all MDM providers. You can sync the Custom Domain and Remember Me settings by saving the IXL settings file in the App Configuration preferences of your MDM.
You can use the following settings file to sync the Custom Domain and Remember Me settings with your MDM:
<dict>
<key>Custom Sign-in @</key>
<string>CUSTOM DOMAIN</string>
<key>Remember Me</key>
<true/>
<key>Date Last Synced</key>
<string>TODAY’S DATE</string>
</dict>
You can replace CUSTOM DOMAIN with your school’s custom domain text (excluding the @ symbol). If the custom domain lines are not included in the file, managed apps will have no custom domain.
The Remember Me line can be either <true/> for on or <false/> for off. With the Remember me feature on, students will remain signed in to their accounts forever. With the Remember me feature off, students will be signed out of their accounts if they haven’t used the app for 10 minutes. By default, downloading the app sets the Remember Me feature on.
Please note that while the exact date format does not matter, the TODAY’S DATE value should be updated each time these settings are edited. This is necessary in order for the settings to be sent out when a change is made.