ASAPPConfig
data class ASAPPConfig @JvmOverloads constructor(val appId: String, val apiHostName: String, val clientSecret: String, val supportedLanguages: List<String> = emptyList(), val regionCode: String = "US", val useUnsafeConnections: Boolean = false, val enableSDKCrashlytics: Boolean = false, val enableSentry: Boolean = true)
Holds the configuration details for ASAPP.
Parameters
app Id
The host app ID.
api Host Name
The host name.
client Secret
A secret shared between the host app and ASAPP.
supported Languages
Your app's supported languages, in order of preference, as an array of language tag strings. Strings can be in the format "{ISO 639-1 Code}-{ISO 3166-1 Code}" or "{ISO 639-1 Code}", such as "en-us" or "en". Defaults to "en".
region Code
Application current region, as an ISO 3166-1 alpha-2 code. Defaults to US.
use Unsafe Connections
Debug param. Not to be used in production.
enable SDKCrashlytics
To enable crashlytics collection.
enable Sentry
To enable sentry collection.