Dependency updates

This commit is contained in:
NerdNumber9 2019-07-28 02:53:25 -04:00
parent d931027067
commit 15bd8e964d
2 changed files with 7 additions and 12 deletions

View File

@ -139,7 +139,7 @@ dependencies {
implementation 'com.android.support:multidex:1.0.3' implementation 'com.android.support:multidex:1.0.3'
standardImplementation 'com.google.firebase:firebase-core:16.0.8' standardImplementation 'com.google.firebase:firebase-core:17.0.1'
// ReactiveX // ReactiveX
implementation 'io.reactivex:rxandroid:1.2.1' implementation 'io.reactivex:rxandroid:1.2.1'
@ -170,7 +170,7 @@ dependencies {
implementation 'com.github.inorichi:unifile:e9ee588' implementation 'com.github.inorichi:unifile:e9ee588'
// HTML parser // HTML parser
implementation 'org.jsoup:jsoup:1.11.3' implementation 'org.jsoup:jsoup:1.12.1'
// Job scheduling // Job scheduling
implementation 'com.evernote:android-job:1.2.5' implementation 'com.evernote:android-job:1.2.5'
@ -274,7 +274,7 @@ dependencies {
implementation "com.squareup.okhttp3:logging-interceptor:3.12.1" implementation "com.squareup.okhttp3:logging-interceptor:3.12.1"
// Firebase (EH) // Firebase (EH)
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.9' implementation 'com.crashlytics.sdk.android:crashlytics:2.10.1'
// Better logging (EH) // Better logging (EH)
implementation 'com.elvishew:xlog:1.6.1' implementation 'com.elvishew:xlog:1.6.1'
@ -295,7 +295,7 @@ dependencies {
} }
buildscript { buildscript {
ext.kotlin_version = '1.3.30' ext.kotlin_version = '1.3.41'
repositories { repositories {
mavenCentral() mavenCentral()
} }

View File

@ -6,16 +6,12 @@ buildscript {
google() google()
jcenter() jcenter()
maven { url 'https://maven.fabric.io/public' } maven { url 'https://maven.fabric.io/public' }
maven { url 'http://storage.googleapis.com/r8-releases/raw' }
} }
dependencies { dependencies {
// Temp workaround for: https://issuetracker.google.com/issues/129730297 classpath 'com.android.tools.build:gradle:3.4.2'
classpath 'com.android.tools:r8:1.4.88' // Must be before the Gradle Plugin for Android.
classpath 'com.android.tools.build:gradle:3.4.0'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.17.0' classpath 'com.github.ben-manes:gradle-versions-plugin:0.17.0'
classpath 'com.github.zellius:android-shortcut-gradle-plugin:0.1.2' classpath 'com.github.zellius:android-shortcut-gradle-plugin:0.1.2'
classpath 'com.google.gms:google-services:4.2.0' classpath 'com.google.gms:google-services:4.3.0'
// NOTE: Do not place your application dependencies here; they belong // NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files // in the individual module build.gradle files
@ -23,8 +19,7 @@ buildscript {
classpath "io.realm:realm-gradle-plugin:5.10.0" classpath "io.realm:realm-gradle-plugin:5.10.0"
// Firebase (EH) // Firebase (EH)
classpath 'com.google.firebase:firebase-plugins:1.2.0' classpath 'io.fabric.tools:gradle:1.31.0'
classpath 'io.fabric.tools:gradle:1.28.1'
} }
} }