fire Up

fun fireUp(configPath: String, loggingEnabled: Boolean = false, debugMode: Boolean)

Method to initialize the Engine with the configuration data and the flags available

Parameters

configPath

is the configuration path where the config file is located

loggingEnabled

concerns whether log the operation of the Engine

debugMode

concerns whether the Engine must send the requests but the server must not collect as real, this is the use-case of a not-production environment


fun fireUp(configData: ByteArray, loggingEnabled: Boolean = false, debugMode: Boolean)

Method to initialize the Engine with the configuration data and the flags available

Parameters

configData

are the config data as ByteArray

loggingEnabled

concerns whether log the operation of the Engine

debugMode

concerns whether the Engine must send the requests but the server must not collect as real, this is the use-case of a not-production environment