mirror of
https://github.com/AdrianKuta/Unbound-Drag-Drop.git
synced 2025-04-19 22:49:02 +02:00
13 lines
274 B
Kotlin
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())
|
|
}
|
|
} |