Updated dependencies.

This commit is contained in:
Karim Abou Zeid 2016-08-18 18:04:07 +02:00
commit 816d8676fd
2 changed files with 5 additions and 5 deletions

View file

@ -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'

View file

@ -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());
}
}