Mobile Device Management

Last Updated: June 16, 2026

The PrinterLogic mobile app supports mobile device management (MDM) Software that lets IT admins control, secure, and enforce policies on mobile devices, such as smartphones and tablets, to optimize device functionality and security in the enterprise while protecting the corporate network. to deploy and configure the mobile app. The MDM solution is AppConfig compliant and can be handled by any provider that supports the AppConfig community. You can manage the PrinterLogic mobile app with numerous enterprise mobility management (EMM) A set of processes, people, and technology that helps businesses manage mobile devices, wireless networks, and other mobile computing services. 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 PrinterLogic instance A collection of services and service groups associated with a customer, created from an app template and deployed to a cloud or virtual server. FQDN The complete domain name for a specific device or host on a network, consisting of the hostname, the domain name, and the top-level domain.. For example if your end users browse to printers.printercloud.com to access PrinterLogic 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

Replace COMPANY_URL_HERE with your PrinterLogic 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.