2024-06-26 00:24:08 +02:00

13 lines
274 B
Kotlin

package com.github.adriankuta.unbounddragdrop
import android.app.Application
import timber.log.Timber
import timber.log.Timber.DebugTree
class MyApplication : Application() {
override fun onCreate() {
super.onCreate()
Timber.plant(DebugTree())
}
}