AppConfig

 

ISL Light for Android supports AppConfig configuration in MDM tools. This allows you to configure settings and options that mobile application exposed. Currently the following restriction keys were implemented for ISL Light:

  • restrictionServer - allows you to set ISL Server for handling the connection (In-app setting: Menu - Settings - ISL Server)
  • restrictionPort - allows you to set TCP port on which to establish the connection (In-app setting: Menu - Settings - TCP Port)


An example AppConfig XML file (change <string> values to correspond to your setup):

<?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>restrictionServer</key>
    <string>isl.example.com</string>
    <key>restrictionPort</key>
    <string>7615,443,80</string>
</dict>
</plist>

Google Admin Console Managed configuration (JSON):

‪{
    ‪"restrictionServer": "isl.example.com",
    ‪"restrictionPort": "7615,443,80"
‪}

Was this article helpful?