diff --git a/app/build.gradle b/app/build.gradle index 3d2eb592..15f859ca 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -98,15 +98,15 @@ dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' - compile('com.crashlytics.sdk.android:crashlytics:2.5.5@aar') { + compile('com.crashlytics.sdk.android:crashlytics:2.6.2@aar') { transitive = true } - compile('com.h6ah4i.android.widget.advrecyclerview:advrecyclerview:0.9.1@aar') { + compile('com.h6ah4i.android.widget.advrecyclerview:advrecyclerview:0.9.3@aar') { transitive = true } - compile('com.github.kabouzeid:app-theme-helper:1.2.0@aar') { + compile('com.github.kabouzeid:app-theme-helper:1.3.1@aar') { transitive = true } @@ -142,7 +142,7 @@ dependencies { compile 'de.psdev.licensesdialog:licensesdialog:1.8.1' compile 'com.github.bumptech.glide:glide:3.7.0' compile 'com.github.bumptech.glide:okhttp3-integration:1.4.0@aar' - compile 'com.github.kabouzeid:RecyclerView-FastScroll:1.8-kmod' + compile 'com.github.kabouzeid:RecyclerView-FastScroll:1.9-kmod' compile 'com.heinrichreimersoftware:material-intro:1.5.7' compile 'me.zhanghai.android.materialprogressbar:library:1.1.7' compile 'org.eclipse.mylyn.github:org.eclipse.egit.github.core:2.1.5' diff --git a/app/src/main/java/com/kabouzeid/gramophone/App.java b/app/src/main/java/com/kabouzeid/gramophone/App.java index 761ab9a2..d524a3ff 100644 --- a/app/src/main/java/com/kabouzeid/gramophone/App.java +++ b/app/src/main/java/com/kabouzeid/gramophone/App.java @@ -23,6 +23,6 @@ public class App extends Application { Crashlytics crashlyticsKit = new Crashlytics.Builder() .core(new CrashlyticsCore.Builder().disabled(BuildConfig.DEBUG).build()) .build(); - Fabric.with(this, crashlyticsKit); + Fabric.with(this, crashlyticsKit, new Crashlytics()); } }