Installing and Configuring the Application for Android Devices
The application installation file is an APK. This can be installed manually, using adb (Android Debug Bridge) or the file system, or it can be installed via an MDM (Mobile Device Management) tool.
Place configuration files in the following directory on the Android device:
/sdcard/Android/data/com.honeywell.Manhattan/files/Configuration/
Microservices.config
This configuration file contains connection and account information for Enterprise Voice.
It is downloaded from the Enterprise Voice portal.
Sample Files
OnetimeStartupSettings.config
This configuration file contains connection information for Manhattan Active WM as well as workflow and voice functionality settings.
Here is an example of a OnetimeStartupSettings.config file with default values:
{
"Repositories": {
"ApplicationConfig": {
"ApplicationSchemeChoice": "MicroserviceBased",
"DefaultLogin": "Local",
"ShowLoginTypeMenuItem": "false",
"EnableLandscapeForTablets": "false"
},
"ApplicationPreferences": {
"LoadingSpinnerDelay": 1000
},
"ManhattanConfig": {
"ClientId": "******************",
"ClientSecret": "***************",
"AuthHost": "hostname",
"AuthPort": "",
"Host": "hostname",
"Port": "",
"SecureConnections": "true",
"WorkflowFilterChoice": "Server",
"ConfirmQuantityScreenInput": "false",
"ConfirmQuantityVoiceInput": "true",
"ShowPlaceholderHintForCheckDigit": "true",
"ConfirmExpectedQuantity": "false",
"NetworkBeepInterval": 2,
"NetworkTimeoutTime": 3,
"NetworkTimeoutRetryBeforePrompt": 3,
"AdjustTtsSpeedOverflowVoiceEnabled": "false",
"NoiseSampleOverflowVoiceEnabled": "false",
"ReportProblemOverflowVoiceEnabled": "false",
"UsePin": "false",
"WebRequestTimeout": 30
},
"SettingsLockdown": {
"VoiceAndAudioSettingsLockdown": "true",
"VoiceRecognitionLockdown": "false",
"PickUpAndGoLockdown": "false",
"PauseOnMicRaiseLockdown": "false",
"CaptioningLockdown": "false",
"ApplicationSettingsLockdown": "true",
"ApplicationSchemeLockdown": "false",
"AutomaticReleaseLeaseLockdown": "false",
"ApplicationSettingsSecureConnectionsLockdown": "false",
"ApplicationSettingsHostLockdown": "false",
"ApplicationSettingsPortLockdown": "false",
"ApplicationSettingsSiteIdLockdown": "false",
"ManhattanAllSettingsLockdown": "true",
"ManhattanSettingsWorkflowFilterLockdown": "false",
"ManhattanSettingsHostLockdown": "false",
"ManhattanSettingsPortLockdown": "false",
"ManhattanSettingsAuthHostLockdown": "false",
"ManhattanSettingsAuthPortLockdown": "false",
"ManhattanSettingsSecureConnectionsLockdown": "false"
}
}
}
See Configuration Settings for details of these settings.
VoiceAndAudioSettingsLockdown
The following is an example of properties that can be added to the OnetimeStartupSettings.config file for Voice and Audio settings. Because VoiceAndAudioSettingsLockdown = true, .all other settings are locked down even though they are set to false.
{
"Repositories": {
"SettingsLockdown": {
"VoiceAndAudioSettingsLockdown": "true",
"VoiceRecognitionLockdown": "false",
"PickUpAndGoLockdown": "false",
"PauseOnMicRaiseLockdown": "false",
"CaptioningLockdown": "false"
}
}
}
ApplicationSettingsLockdown
The following is an example of properties that can be added to the OnetimeStartupSettings.config file for Application settings. Because ApplicationSettingsLockdown = true, .all other settings are locked down even though they are set to false.
{
"Repositories": {
"SettingsLockdown": {
"ApplicationSettingsLockdown": "true",
"ApplicationSchemeLockdown": "false",
"AutomaticReleaseLeaseLockdown": "false",
"ApplicationSettingsSecureConnectionsLockdown": "false",
"ApplicationSettingsHostLockdown": "false",
"ApplicationSettingsPortLockdown": "false",
"ApplicationSettingsSiteIdLockdown": "false"
}
}
}
ManhattanAllSettingsLockdown
The following is an example of properties that can be added to the OnetimeStartupSettings.config file for Manhattan settings. Because ManhattanAllSettingsLockdown = true, .all other settings are locked down even though they are set to false.
{
"Repositories": {
"SettingsLockdown": {
"ManhattanAllSettingsLockdown": "true",
"ManhattanSettingsWorkflowFilterLockdown": "false",
"ManhattanSettingsHostLockdown": "false",
"ManhattanSettingsPortLockdown": "false",
"ManhattanSettingsAuthHostLockdown": "false",
"ManhattanSettingsAuthPortLockdown": "false",
"ManhattanSettingsSecureConnectionsLockdown": "false"
}
}
}