forked from github/wulkanowy-mirror
Update dependencies (#274)
This commit is contained in:
parent
feb38b97e4
commit
475e7dd6a3
@ -57,6 +57,11 @@ android {
|
|||||||
lintOptions {
|
lintOptions {
|
||||||
disable 'HardwareIds'
|
disable 'HardwareIds'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
compileOptions {
|
||||||
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||||||
|
targetCompatibility JavaVersion.VERSION_1_8
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
androidExtensions {
|
androidExtensions {
|
||||||
@ -86,8 +91,8 @@ dependencies {
|
|||||||
implementation "android.arch.work:work-rxjava2:1.0.0"
|
implementation "android.arch.work:work-rxjava2:1.0.0"
|
||||||
implementation "android.arch.work:work-runtime:1.0.0"
|
implementation "android.arch.work:work-runtime:1.0.0"
|
||||||
|
|
||||||
implementation 'com.squareup.inject:assisted-inject-annotations-dagger2:0.3.2'
|
implementation 'com.squareup.inject:assisted-inject-annotations-dagger2:0.3.3'
|
||||||
kapt 'com.squareup.inject:assisted-inject-processor-dagger2:0.3.2'
|
kapt 'com.squareup.inject:assisted-inject-processor-dagger2:0.3.3'
|
||||||
|
|
||||||
implementation "com.google.dagger:dagger-android-support:2.21"
|
implementation "com.google.dagger:dagger-android-support:2.21"
|
||||||
kapt "com.google.dagger:dagger-compiler:2.21"
|
kapt "com.google.dagger:dagger-compiler:2.21"
|
||||||
@ -106,32 +111,32 @@ dependencies {
|
|||||||
implementation 'com.github.PhilJay:MPAndroidChart:971640b29d'
|
implementation 'com.github.PhilJay:MPAndroidChart:971640b29d'
|
||||||
|
|
||||||
implementation 'com.github.pwittchen:reactivenetwork-rx2:3.0.2'
|
implementation 'com.github.pwittchen:reactivenetwork-rx2:3.0.2'
|
||||||
implementation 'io.reactivex.rxjava2:rxandroid:2.1.0'
|
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
|
||||||
implementation "io.reactivex.rxjava2:rxjava:2.2.5"
|
implementation "io.reactivex.rxjava2:rxjava:2.2.7"
|
||||||
|
|
||||||
implementation "com.jakewharton.threetenabp:threetenabp:1.1.1"
|
implementation "com.jakewharton.threetenabp:threetenabp:1.2.0"
|
||||||
implementation "com.jakewharton.timber:timber:4.7.1"
|
implementation "com.jakewharton.timber:timber:4.7.1"
|
||||||
implementation "at.favre.lib:slf4j-timber:1.0.1"
|
implementation "at.favre.lib:slf4j-timber:1.0.1"
|
||||||
implementation "com.mikepenz:aboutlibraries:6.2.0"
|
implementation "com.mikepenz:aboutlibraries:6.2.3"
|
||||||
|
|
||||||
implementation 'com.google.firebase:firebase-core:16.0.7'
|
implementation 'com.google.firebase:firebase-core:16.0.7'
|
||||||
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.9'
|
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.9'
|
||||||
|
|
||||||
releaseImplementation 'fr.o80.chucker:library-no-op:2.0.3'
|
releaseImplementation 'fr.o80.chucker:library-no-op:2.0.4'
|
||||||
|
|
||||||
debugImplementation 'fr.o80.chucker:library:2.0.3'
|
debugImplementation 'fr.o80.chucker:library:2.0.4'
|
||||||
debugImplementation "com.amitshekhar.android:debug-db:1.0.4"
|
debugImplementation "com.amitshekhar.android:debug-db:1.0.6"
|
||||||
|
|
||||||
testImplementation "junit:junit:4.12"
|
testImplementation "junit:junit:4.12"
|
||||||
testImplementation "io.mockk:mockk:1.9"
|
testImplementation "io.mockk:mockk:1.9.1"
|
||||||
testImplementation "org.mockito:mockito-inline:2.23.4"
|
testImplementation "org.mockito:mockito-inline:2.25.0"
|
||||||
testImplementation 'org.threeten:threetenbp:1.3.8'
|
testImplementation 'org.threeten:threetenbp:1.3.8'
|
||||||
|
|
||||||
androidTestImplementation "io.mockk:mockk-android:1.9"
|
androidTestImplementation "io.mockk:mockk-android:1.9.1"
|
||||||
androidTestImplementation 'androidx.test:core:1.1.0'
|
androidTestImplementation 'androidx.test:core:1.1.0'
|
||||||
androidTestImplementation 'androidx.test:runner:1.1.1'
|
androidTestImplementation 'androidx.test:runner:1.1.1'
|
||||||
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
|
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
|
||||||
androidTestImplementation 'org.mockito:mockito-android:2.23.4'
|
androidTestImplementation 'org.mockito:mockito-android:2.25.0'
|
||||||
androidTestImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
|
androidTestImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
apply plugin: "jacoco"
|
apply plugin: "jacoco"
|
||||||
|
|
||||||
jacoco {
|
jacoco {
|
||||||
toolVersion "0.8.2"
|
toolVersion "0.8.3"
|
||||||
reportsDir = file("$buildDir/reports")
|
reportsDir = file("$buildDir/reports")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ buildscript {
|
|||||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||||
classpath 'com.android.tools.build:gradle:3.3.2'
|
classpath 'com.android.tools.build:gradle:3.3.2'
|
||||||
classpath 'com.google.gms:google-services:4.2.0'
|
classpath 'com.google.gms:google-services:4.2.0'
|
||||||
classpath "io.fabric.tools:gradle:1.27.0"
|
classpath "io.fabric.tools:gradle:1.27.1"
|
||||||
classpath "com.github.triplet.gradle:play-publisher:2.1.0"
|
classpath "com.github.triplet.gradle:play-publisher:2.1.0"
|
||||||
classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.7"
|
classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.7"
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user