2024 Update Rollup 1

AndroidPermanent link for this heading

The Fabasoft Folio 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 which 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 bundles, 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.

Services

bundle_array

No

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

Services.Forced

boolean

no

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

OptionalPasscode

boolean

no

Defines if the passcode is optional or not. 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 Services array is a bundle and must contain the following settings:

Key

Type

Required

Description

Service

bundle

yes

Bundle container for values.

Service.Name

string

yes

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

Service.Url

string

yes

Defines the webserver URL. Value must be a valid URL.

Service.LoginMethod

integer

no

Defines the login method for the service. Value can be 1 (basic authentication), 2 (client certificate authentication) or 3 (single sign-on).

Service.Username

string

no

Defines the user's login username for the service. Value can be empty or any string.

Service.KeepSignedIn

boolean

no

Defines whether the user should stay logged in. Value can be true or false.

Service.DomainType

string

no

Defines the domain type of the service. Value can be “Folio”, eGov or “Cloud”.

Service.Forced

boolean

no

Defines whether the settings LoginMethod, Username andKeepSignedIn should be forced from MDM. Value can be true or false. When true, all valid values will be forced. When false, the MDM values will be used when no user configured values are available.

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=""
                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="Services"
        android:restrictionType="bundle_array">
        <restriction
            android:key="Service"
            android:restrictionType="bundle">
            <restriction
                android:defaultValue="My Fabasoft Folio"
                android:key="Service.Name"
                android:restrictionType="string">
           </restriction>
            <restriction
                android:defaultValue="https://myfolio.example.com/fsc"
                android:key="Service.Url"
                android:restrictionType="string">
            </restriction>
            <restriction
                android:defaultValue="1"
                android:key="Service.LoginMethod"
                android:restrictionType="integer">
            </restriction>
            <restriction
                android:defaultValue="MyUser"
                android:key="Service.Username"
                android:restrictionType="string">
            </restriction>
            <restriction
                android:defaultValue="true"
                android:key="Service.KeepSignedIn"
                android:restrictionType="bool">
            </restriction>
            <restriction
               android:defaultValue="Folio"
                android:key="Service.DomainType"
                android:restrictionType="string"
                android:title="Domain type of the service">
            </restriction>
            <restriction
                android:defaultValue="false"
                android:key="Service.Forced"
                android:restrictionType="bool">
            </restriction>
        </restriction>
    </restriction>
    <restriction
        android:defaultValue="false"
        android:key="Services.Forced"
        android:restrictionType="bool">
    </restriction>
    <restriction
        android:defaultValue="false"
        android:key="OptionalPasscode"
        android:restrictionType="bool">
    </restriction>
</restrictions>