INNER CODE UNIT · Kotlin
onCreate
LukasLechnerDev/Kotlin-Coroutines-and-Flow-UseCases-on-Android · app/src/main/java/com/lukaslechner/coroutineusecasesonandroid/CoroutineUsecasesOnAndroidApplication.kt:22
override fun onCreate() {
super.onCreate()
Timber.plant(Timber.DebugTree())
// Enable Debugging for Kotlin Coroutines in debug builds
// Prints Coroutine name when logging Thread.currentThread().name
System.setProperty("kotlinx.coroutines.debug", if (BuildConfig.DEBUG) "on" else "off")
}
}