Skip to content

Instantly share code, notes, and snippets.

@Kpeved
Created November 12, 2019 20:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kpeved/66a259098c653c2e8604827f27b02fb2 to your computer and use it in GitHub Desktop.
Save Kpeved/66a259098c653c2e8604827f27b02fb2 to your computer and use it in GitHub Desktop.
class MyApplication : Application(){
override fun onCreate() {
super.onCreate()
if (BuildConfig.DEBUG) {
Timber.plant(DebugTree())
} else {
Timber.plant(CrashReportingTree())
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment