add Stetho for debugging so I can actually see what am I doing
This commit is contained in:
parent
29eba249ee
commit
f609f9402a
|
@ -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'
|
||||
}
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue