Skip to content

Instantly share code, notes, and snippets.

@carotkut94
Created November 12, 2018 09:02
Show Gist options
  • Save carotkut94/0b28c8aa29e5c4e336c235b3c87e6110 to your computer and use it in GitHub Desktop.
Save carotkut94/0b28c8aa29e5c4e336c235b3c87e6110 to your computer and use it in GitHub Desktop.
package com.death.timberdemo;
import android.app.Application;
import timber.log.Timber;
public class ApplicationController extends Application {
@Override
public void onCreate() {
super.onCreate();
if(BuildConfig.DEBUG){
Timber.plant(new Timber.DebugTree());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment