update deps

This commit is contained in:
KevinX8 2021-10-08 21:57:08 +03:00
parent 36fc660811
commit 4eae61e7a6
4 changed files with 10 additions and 10 deletions

View File

@ -109,7 +109,7 @@ dependencies {
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0")
implementation("androidx.work:work-runtime-ktx:2.7.0-rc01")
implementation("com.github.madrapps:pikolo:2.0.1")
implementation("com.github.madrapps:pikolo:2.0.2")
implementation("com.google.android.material:material:1.5.0-alpha04")
// JSON parser
@ -119,7 +119,7 @@ dependencies {
implementation("com.github.kittinunf.fuel:fuel:2.3.1")
implementation("com.github.kittinunf.fuel:fuel-coroutines:2.3.1")
implementation("com.github.kittinunf.fuel:fuel-json:2.3.1")
implementation("com.squareup.okhttp3:logging-interceptor:4.9.1")
implementation("com.squareup.okhttp3:logging-interceptor:4.9.2")
implementation("com.squareup.retrofit2:retrofit:2.9.0")
// Root permissions

View File

@ -11,12 +11,12 @@ dependencies {
implementation(kotlin("stdlib"))
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.0")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.2-native-mt")
val kotestVersion = "4.4.3"
testImplementation("io.kotest:kotest-runner-junit5:$kotestVersion")
testImplementation("io.kotest:kotest-assertions-core:$kotestVersion")
testImplementation("io.kotest:kotest-property:$kotestVersion")
testImplementation("io.mockk:mockk:1.10.6")
testImplementation("io.mockk:mockk:1.12.0")
}

View File

@ -61,23 +61,23 @@ dependencies {
implementation("com.squareup.retrofit2:retrofit:2.9.0")
val moshiVersion = "1.11.0"
val moshiVersion = "1.12.0"
implementation("com.squareup.moshi:moshi-kotlin:$moshiVersion")
implementation("com.squareup.moshi:moshi-kotlin-codegen:$moshiVersion")
implementation("com.squareup.moshi:moshi-adapters:$moshiVersion")
implementation("com.squareup.okhttp3:logging-interceptor:4.9.1")
implementation("com.squareup.okhttp3:logging-interceptor:4.9.2")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2")
implementation("io.insert-koin:koin-android:3.1.2")
val kotestVersion = "4.4.3"
val kotestVersion = "5.0.0.M2"
testImplementation("io.kotest:kotest-runner-junit5:$kotestVersion")
testImplementation("io.kotest:kotest-assertions-core:$kotestVersion")
testImplementation("io.kotest:kotest-property:$kotestVersion")
val mockkVersion = "1.10.6"
val mockkVersion = "1.12.0"
testImplementation("io.mockk:mockk:$mockkVersion")
androidTestImplementation("io.mockk:mockk-android:$mockkVersion")

View File

@ -41,12 +41,12 @@ dependencies {
implementation("com.squareup.retrofit2:retrofit:$retrofitVersion")
implementation("com.squareup.retrofit2:converter-moshi:$retrofitVersion")
val moshiVersion = "1.11.0"
val moshiVersion = "1.12.0"
implementation("com.squareup.moshi:moshi-kotlin:$moshiVersion")
implementation("com.squareup.moshi:moshi-kotlin-codegen:$moshiVersion")
implementation("com.squareup.moshi:moshi-adapters:$moshiVersion")
implementation("com.squareup.okhttp3:logging-interceptor:4.9.1")
implementation("com.squareup.okhttp3:logging-interceptor:4.9.2")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2")