Configuration
Config​
The SDK behaviour is controlled by a trailing lambda that configures a Config.Builder during initialization.
- Kotlin
- Swift
Fedo.initialize(
applicationContext,
"...",
) {
timeoutInMillis = 15_000
debug = true
}
The lambda is optional. Call Fedo.initialize(context, "...") for defaults.
Options
| Property | Type | Default | Description |
|---|---|---|---|
timeoutInMillis | Long | 10_000 | HTTP request timeout for API calls |
debug | Boolean | false | Enable verbose SDK logging to logcat |
Log output is tagged with FedoLogger.
// coming soon