Complementary trees for Timber.
Includes:
- DebugTree for debugging
- CrashlyticsTree for sending non-fatal exceptions to Fabric.io (Crashlytics).
Plant the trees to Timber as you would normally do:
Timber.plant(new DebugTree());
or
Timber.plant(new CrashlyticsTree());
Add this in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
Add the dependency
dependencies {
compile 'com.github.michalis-vitos:timberutils:1.0.0'
}