Mobile Device Management

Last Updated: April 07, 2026

The PrinterLogic app supports Mobile Device Management (MDM) Mobile device management (MDM) software allows IT administrators to control, secure and enforce policies on smartphones, tablets and other endpoints. The intent of MDM is to optimize the functionality and security of mobile devices within 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 app with numerous Enterprise Mobility Management (EMM) Enterprise mobility management (EMM) is a set of processes, people, and technology that help 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 Vasion Print 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 app template and is then deployed to a cloud or virtual server. FQDN A fully qualified domain name (FQDN) is the complete domain name for a specific computer or host on the internet. The FQDN consists of the hostname and domain name.. For example if your end users browse to printers.printercloud.com to access Vasion Print 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 Vasion Print 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.