Trace:
Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
flutterui:app_config [2023/03/07 23:16] admin |
flutterui:app_config [2023/04/17 06:30] (current) admin |
||
---|---|---|---|
Line 1: | Line 1: | ||
~~Title: Application configuration~~ | ~~Title: Application configuration~~ | ||
~~NOTRANS~~ | ~~NOTRANS~~ | ||
+ | The configuration file is located in ''assets/config/app.conf.json'', e.g. | ||
+ | |||
+ | <file json> | ||
+ | { | ||
+ | "title": "JVx Mobile Demo", | ||
+ | "privacyPolicy": "https://my.dom.ain/privacy-policy/", | ||
+ | ... | ||
+ | } | ||
+ | </file> | ||
+ | |||
+ | === Parameters === | ||
+ | |||
+ | ''title'' (string) | ||
+ | |||
+ | A one-line description used by the device to identify the app for the user. | ||
+ | |||
+ | On Android the titles appear above the task manager's app snapshots which are displayed when the user presses the "recent apps" button. On iOS this value cannot be used. CFBundleDisplayName from the app's Info.plist is referred to instead whenever present, CFBundleName otherwise. On the web it is used as the page title, which shows up in the browser's list of open tabs. | ||
''privacyPolicy'' (string) | ''privacyPolicy'' (string) | ||
- | A privacy policy URL. If not set, no link in settings | + | A privacy policy URL. If not set, no link in settings. |
''requestTimeout'' (long) | ''requestTimeout'' (long) | ||
- | Timeout for requests in milliseconds. | + | Timeout for requests in milliseconds (<= 0 or not set to disable). |
''aliveInterval'' (long) | ''aliveInterval'' (long) | ||
- | The http alive interval in milliseconds. | + | The http alive interval in milliseconds (<= 0 or null to disable). |
''wsPingInterval'' | ''wsPingInterval'' | ||
- | The websocket ping interval in milliseconds. | + | The websocket ping interval in milliseconds (<= 0 or null to disable). |
''autoRestartOnSessionExpired'' (boolean) | ''autoRestartOnSessionExpired'' (boolean) | ||
Line 24: | Line 41: | ||
''showAppOverviewWithoutDefault'' (boolean) | ''showAppOverviewWithoutDefault'' (boolean) | ||
+ | Whether the app overview should be shown even when there is only one app which is not marked as default. | ||
''serverConfigsLocked'' (boolean) | ''serverConfigsLocked'' (boolean) | ||
Line 43: | Line 60: | ||
The "Manage single application" switch is hidden when either customAppsAllowed is ''false'' or forceSingleAppMode is ''true''. | The "Manage single application" switch is hidden when either customAppsAllowed is ''false'' or forceSingleAppMode is ''true''. | ||
+ | |||
+ | ''serverConfigs'' (array) | ||
+ | |||
+ | Every record defines a pre-defined application e.g. | ||
+ | |||
+ | <file json> | ||
+ | { | ||
+ | "title": "Title" | ||
+ | "baseUrl": "http://localhost/dri17/services/mobile", | ||
+ | "appName": "protocol", | ||
+ | "username": "preview", | ||
+ | "password": null, | ||
+ | "icon": "https://upload.wikimedia.org/wikipedia/commons/a/a6/Jvx_2020.png", | ||
+ | "locked": false, | ||
+ | "parametersHidden": false | ||
+ | "default": true | ||
+ | } | ||
+ | </file> |