Update dependencies

This commit is contained in:
Kirill Kamakin
2021-11-20 14:24:59 +03:00
parent 1985764340
commit 06c8144dd3
2 changed files with 13 additions and 11 deletions

View File

@@ -82,10 +82,10 @@ dependencies {
implementation "androidx.core:core-ktx:1.7.0" implementation "androidx.core:core-ktx:1.7.0"
// https://developer.android.com/jetpack/androidx/releases/appcompat // https://developer.android.com/jetpack/androidx/releases/appcompat
implementation "androidx.appcompat:appcompat:1.3.1" implementation "androidx.appcompat:appcompat:1.4.0"
// https://developer.android.com/jetpack/androidx/releases/constraintlayout // https://developer.android.com/jetpack/androidx/releases/constraintlayout
implementation "androidx.constraintlayout:constraintlayout:2.1.1" implementation "androidx.constraintlayout:constraintlayout:2.1.2"
// https://developer.android.com/jetpack/androidx/releases/swiperefreshlayout // https://developer.android.com/jetpack/androidx/releases/swiperefreshlayout
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0" implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
@@ -122,12 +122,12 @@ dependencies {
implementation 'com.jakewharton.timber:timber:5.0.1' implementation 'com.jakewharton.timber:timber:5.0.1'
// https://developer.android.com/jetpack/androidx/releases/paging // https://developer.android.com/jetpack/androidx/releases/paging
def paging_version = "3.1.0-rc01" def paging_version = "3.1.0"
implementation "androidx.paging:paging-runtime-ktx:$paging_version" implementation "androidx.paging:paging-runtime-ktx:$paging_version"
testImplementation "androidx.paging:paging-common-ktx:$paging_version" testImplementation "androidx.paging:paging-common-ktx:$paging_version"
// https://developer.android.com/jetpack/androidx/releases/room // https://developer.android.com/jetpack/androidx/releases/room
def room_version = "2.4.0-beta01" def room_version = "2.4.0-beta02"
implementation "androidx.room:room-runtime:$room_version" implementation "androidx.room:room-runtime:$room_version"
implementation "androidx.room:room-ktx:$room_version" implementation "androidx.room:room-ktx:$room_version"
implementation "androidx.room:room-paging:$room_version" implementation "androidx.room:room-paging:$room_version"
@@ -149,7 +149,7 @@ dependencies {
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.2" testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.2"
// https://github.com/robolectric/robolectric/releases // https://github.com/robolectric/robolectric/releases
testImplementation "org.robolectric:robolectric:4.7" testImplementation "org.robolectric:robolectric:4.7.1"
// https://developer.android.com/jetpack/androidx/releases/test // https://developer.android.com/jetpack/androidx/releases/test
testImplementation "androidx.test.ext:junit-ktx:1.1.3" testImplementation "androidx.test.ext:junit-ktx:1.1.3"

View File

@@ -1,12 +1,14 @@
buildscript { buildscript {
// https://developer.android.com/jetpack/androidx/releases/navigation ext {
ext.nav_version = "2.4.0-beta02" // https://developer.android.com/jetpack/androidx/releases/navigation
nav_version = "2.4.0-beta02"
// https://dagger.dev/hilt/gradle-setup // https://dagger.dev/hilt/gradle-setup
ext.hilt_version = "2.40.1" hilt_version = "2.40.1"
// https://kotlinlang.org/docs/gradle.html // https://kotlinlang.org/docs/gradle.html
ext.kotlin_version = "1.5.31" kotlin_version = "1.6.0"
}
repositories { repositories {
google() google()