Mobile Device Management

Last Updated: October 07, 2024

The PrinterLogic App supports Mobile Device Management (MDM) to deploy and configure the mobile app. The MDM solution is AppConfig compliant so you can be sure the app can be handled by any provider that supports the AppConfig community. You can manage the PrinterLogic App with numerous Enterprise Mobility Management (EMM) providers to fulfill the increasing demand for mobile device use in all levels of business, specifically for print capabilities.

Setup Information

Common EMM providers can use a configuration editor that requires a specific Key and a Configuration / URL value, or an XML / JSON code string. Both options are available below. Since all EMM platforms are different, you should refer to your preferred application documentation for configuration.

Editor Values Option

Key

The key below is the default key for all EMM applications:

Copy Code
printerlogicurl

Value Type and Configuration/URL value

Set the Value Type as String.

The Configuration / URL value is your Virtual Appliance instance An instance is a collection of services and service groups that is associated with a customer. A customer's instance is created from an application template and is then deployed to a cloud or virtual server. FQDN. For example, if your end users browse to printers.printercloud.com to access Virtual Appliance features, that is the value to enter into the appropriate Configuration / URL value field.

Key and Configuration / URL value editor.

XML/JSON code string Option

Ensure you replace COMPANY_URL_HERE with your Virtual Appliance instance URL.

XML Code for iOS

Copy Code
<dict>
    <key>printerlogicurl</key>
    <string>COMPANY_URL_HERE</string>
</dict>

Example:

Example of the XML code for the app configuration.

JSON Code for Android

Copy Code
{
    "kind": "androidenterprise#managedConfiguration",
    "productId": "app:com.printerlogic.printerlogic",
    "managedProperty": [
        {
            "key": "printerlogicurl",
            "valueString": "COMPANY_URL_HERE"
        }
    ]
}

Example:

Example of the JSON code for Android.