disable notification setting implemented

This commit is contained in:
danijoo
2016-01-02 13:11:28 +01:00
parent 5c625710a1
commit 33d78ee5f1
3 changed files with 56 additions and 5 deletions

View File

@@ -0,0 +1,12 @@
package net.headlezz.notificationlogger;
import timber.log.Timber;
public class Application extends android.app.Application {
@Override
public void onCreate() {
super.onCreate();
Timber.plant(new Timber.DebugTree());
}
}