FairEmail/app/src/main/java/com/bugsnag/android/Telemetry.kt

22 lines
430 B
Kotlin

package com.bugsnag.android
/**
* Types of telemetry that may be sent to Bugsnag for product improvement purposes.
*/
enum class Telemetry {
/**
* Errors within the Bugsnag SDK.
*/
INTERNAL_ERRORS,
/**
* Differences from the default configuration.
*/
USAGE;
internal companion object {
fun fromString(str: String) = values().find { it.name == str } ?: INTERNAL_ERRORS
}
}