Appendix A

Copy

Managed configuration template for Android

<?xml version="1.0" encoding="utf-8"?>
<restrictions xmlns:android="http://schemas.android.com/apk/res/android">

    <restriction
        android:defaultValue="1.0.0"
        android:description="The current version of the app configuration"
        android:key="version_config"
        android:restrictionType="hidden"
        android:title="Version" />

    <restriction
        android:description="(Mandatory) Enter the server name."
        android:key="server_name_config"
        android:restrictionType="string"
        android:title="Server name" />

    <restriction
        android:description="(Mandatory) Enter the server address."
        android:key="server_address_config"
        android:restrictionType="string"
        android:title="Server address" />

    <restriction
        android:description="(Mandatory) Enter the server port."
        android:key="server_port_config"
        android:restrictionType="integer"
        android:title="Server port" />

    <restriction
        android:description="Enable when you use an HTTPS connection. Disable when you use an HTTP connection."
        android:key="server_secure_connection_config"
        android:restrictionType="bool"
        android:title="Connection protocol type"
        android:defaultValue="true"/>

</restrictions>