Skip to content

Commit

Permalink
Library updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolay Kochetkov committed Feb 9, 2023
1 parent 064e96e commit c0a6b4b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ allprojects {
ext {
commonLibVersions = [
// Code
"rx_java": '3.1.5',
"rx_java": '3.1.6',
"coroutines": '1.6.4',
"core_ktx_version": '1.8.0',
"core_ktx_version": '1.9.0',
"lifecycle_version": '2.5.1',
"arch_version": "2.1.0",
"nav_version": '2.5.1',
"nav_version": '2.5.3',
"work_version": '2.7.1',

// Tests
Expand Down
22 changes: 11 additions & 11 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ android {
}

dependencies {
def dagger_version = '2.43.2'
def dagger_version = '2.44.2'

coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.6'
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.2'

implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(':rx')
Expand All @@ -72,11 +72,11 @@ dependencies {

implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"

implementation 'androidx.appcompat:appcompat:1.5.0'
implementation 'androidx.appcompat:appcompat:1.6.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'com.google.android.material:material:1.6.1'
implementation 'com.google.android.material:material:1.8.0'

implementation "androidx.core:core-ktx:${commonLibVersions.core_ktx_version}"
implementation "androidx.lifecycle:lifecycle-reactivestreams-ktx:${commonLibVersions.lifecycle_version}"
Expand All @@ -99,21 +99,21 @@ dependencies {
kapt "com.google.dagger:dagger-android-processor:$dagger_version"

implementation "io.reactivex.rxjava3:rxjava:${commonLibVersions.rx_java}"
implementation 'io.reactivex.rxjava3:rxandroid:3.0.0'
implementation 'io.reactivex.rxjava3:rxandroid:3.0.2'

implementation 'com.jakewharton.threetenabp:threetenabp:1.4.0'
implementation 'com.jakewharton.threetenabp:threetenabp:1.4.4'
implementation 'com.jakewharton.timber:timber:5.0.1'

testImplementation "junit:junit:${commonLibVersions.junit}"
testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
testImplementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:${commonLibVersions.mockito_kotlin}"
testImplementation 'androidx.arch.core:core-testing:2.1.0'
testImplementation 'org.threeten:threetenbp:1.6.1'
testImplementation 'org.threeten:threetenbp:1.6.5'

androidTestImplementation 'androidx.test:runner:1.4.0'
androidTestImplementation 'androidx.test:core:1.4.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test:rules:1.4.0'
androidTestImplementation 'androidx.test:runner:1.5.2'
androidTestImplementation 'androidx.test:core:1.5.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test:rules:1.5.0'
androidTestImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
}

0 comments on commit c0a6b4b

Please sign in to comment.