add Stetho for debugging so I can actually see what am I doing

This commit is contained in:
tibbi 2016-09-12 20:51:46 +02:00
parent 29eba249ee
commit f609f9402a
3 changed files with 15 additions and 0 deletions

View File

@ -34,6 +34,7 @@ dependencies {
compile 'joda-time:joda-time:2.9.1'
compile 'com.jakewharton:butterknife:8.0.1'
compile 'com.github.yukuku:ambilwarna:2.0.1'
compile 'com.facebook.stetho:stetho:1.3.1'
apt 'com.jakewharton:butterknife-compiler:8.0.1'
}

View File

@ -6,6 +6,7 @@
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<application
android:name=".App"
android:allowBackup="true"
android:icon="@mipmap/launcher"
android:label="@string/app_launcher_name"

View File

@ -0,0 +1,13 @@
package com.simplemobiletools.calendar;
import android.app.Application;
import com.facebook.stetho.Stetho;
public class App extends Application {
@Override
public void onCreate() {
super.onCreate();
Stetho.initializeWithDefaults(this);
}
}