2024 April Release

AndroidPermanent link for this heading

The Fabasoft Cloud app supports the following MDM settings:

Key

Type

Required

Description

ShowSupportWhenUserShake

boolean

no

Defines whether the support dialog should be opened when the user shakes the device. Value can be true or false.

ShowSupportWhenUserShake.Forced

boolean

no

Defines whether the setting for ShowSupportWhenUserShake should be forced from MDM. Value can be true or false.

ShowPreviewForWorklistFolders

boolean

no

Defines whether folders opened from the worklist should be shown as PDF overview. Value can be true or false.

ShowPreviewForWorklistFolders.Forced

boolean

no

Defines whether the setting for ShowPreviewForWorklistFolders should be forced from MDM. Value can be true or false.

SyncOnLan.Disabled.Forced

boolean

no

Defines whether the feature LAN synchronization is available. Value can be true or false.

SyncOnLan.Port.Forced

integer

no

Defines the port wihich will be used for the LAN synchronization service.

SyncOnLan.SSIDs

bundle_array

no

Defines the trusted networks in which LAN synchronization can be used. The defined values from MDM cannot be altered by the user. The user might define additional trusted networks. Value must be an array of dictionaries, see description below.

SyncOnLan.SSIDs.Forced

boolean

no

Defines whether the setting for SyncOnLan.SSIDs should be forced from MDM. Value can be true or false.

CloudServices

bundle_array

no

Defines the available cloud services for the user. Value must be an array of bundles, see description below.

CloudServices.Forced

boolean

no

Defines whether the setting for CloudServices should be forced from MDM. Value can be true or false. When true, all other defined cloud services will be removed and adding new cloud services is disabled. When false, the cloud services will be added to the list of available cloud services.

OptionalPasscode

boolean

no

Defines whether the user can decide if the passcode should be enabled or disabled. When not set the passcode is always enabled and cannot be disabled. Value can be true or false.

Each entry in the SyncOnLan.SSIDs array is a bundle and must contain the following values:

Key

Type

Required

Description

SyncOnLan.SSID

bundle

yes

Bundle container for value.

SyncOnLan.SSID.Value

string

yes

Defines the SSID of a trusted network in which LAN synchronization can be. Value can be any string.

Each entry in the CloudServices array is a bundle and must contain the following values:

Key

Type

Required

Description

CloudService

bundle

yes

Bundle container for value.

CloudService.Name

string

yes

Defines the name for the cloud service. Value can be any string.

CloudService.Hostname

string

yes

Defines the hostname for the cloud service. Value must be unique. Value must be a valid hostname.

Multiple cloud services with the same hostname are not allowed. When multiple cloud services with the same hostname are configured, the name from the last configured bundle will be used.

ExamplePermanent link for this heading

Configuration Example

<restrictions xmlns:android="http://schemas.android.com/apk/res/android">
    <restriction
        android:defaultValue="true"
        android:key="ShowSupportWhenUserShake"
        android:restrictionType="bool">
    </restriction>
    <restriction
        android:defaultValue="false"
        android:key="ShowSupportWhenUserShake.Forced"
        android:restrictionType="bool">
    </restriction>
    <restriction
        android:defaultValue="false"
        android:key="ShowPreviewForWorklistFolders"
        android:restrictionType="bool">
    </restriction>
    <restriction
        android:defaultValue="false"
        android:key="ShowPreviewForWorklistFolders.Forced"
        android:restrictionType="bool">
    </restriction>
    <restriction
        android:defaultValue="false"
        android:key="SyncOnLan.Disabled.Forced"
        android:restrictionType="bool">
    </restriction>
    <restriction
        android:defaultValue="17096"
        android:key="SyncOnLan.Port.Forced"
        android:restrictionType="integer">
    </restriction>
    <restriction
        android:key="SyncOnLan.SSIDs"
        android:restrictionType="bundle_array"
       <restriction
            android:key="SyncOnLan.SSID"
            android:restrictionType="bundle">
           <restriction
                android:defaultValue="My WiFi1 SSID"
                android:key="SyncOnLan.SSID.Value"
                android:restrictionType="string">
            </restriction>
        </restriction>
        <restriction
            android:key="SyncOnLan.SSID"
            android:restrictionType="bundle">
            <restriction
                android:defaultValue="My WiFi2 SSID"
                android:key="SyncOnLan.SSID.Value"
                android:restrictionType="string">
            </restriction>
        </restriction>
    </restriction>
    <restriction
        android:defaultValue="false"
        android:key="SyncOnLan.SSIDs.Forced"
        android:restrictionType="bool">
    </restriction>
    <restriction
        android:key="CloudServices"
        android:restrictionType="bundle_array">
        <restriction
            android:key="CloudService"
            android:restrictionType="bundle">
            <restriction
                android:defaultValue="My Fabasoft Private Cloud"
                android:key="CloudService.Name"
                android:restrictionType="string">
            </restriction>
            <restriction
                android:defaultValue="myfabasoftcloud.example.com"
                android:key="CloudService.Hostname"
                android:restrictionType="string">
            </restriction>
        </restriction>
    </restriction>
    <restriction
        android:defaultValue="false"
        android:key="CloudServices.Forced"
        android:restrictionType="bool">
    </restriction>
    <restriction
        android:defaultValue="false"
        android:key="OptionalPasscode"
        android:restrictionType="bool">
    </restriction>
</restrictions>