Update Robolectric to 4.9.2 (#3422)
This commit is contained in:
parent
70dced795c
commit
81116f2df3
2 changed files with 8 additions and 1 deletions
|
@ -116,6 +116,13 @@ kapt {
|
|||
}
|
||||
}
|
||||
|
||||
configurations {
|
||||
// JNI-only libraries don't play nicely with Robolectric
|
||||
// see https://github.com/tuskyapp/Tusky/pull/3367
|
||||
testImplementation.exclude group: "org.conscrypt", module: "conscrypt-android"
|
||||
testRuntime.exclude group: "org.conscrypt", module: "conscrypt-android"
|
||||
}
|
||||
|
||||
// library versions are in PROJECT_ROOT/gradle/libs.versions.toml
|
||||
dependencies {
|
||||
implementation libs.kotlinx.coroutines.android
|
||||
|
|
|
@ -42,7 +42,7 @@ mockito-kotlin = "4.1.0"
|
|||
networkresult-calladapter = "1.0.0"
|
||||
okhttp = "4.10.0"
|
||||
retrofit = "2.9.0"
|
||||
robolectric = "4.8.1"
|
||||
robolectric = "4.9.2"
|
||||
rxandroid3 = "3.0.2"
|
||||
rxjava3 = "3.1.6"
|
||||
rxkotlin3 = "3.0.1"
|
||||
|
|
Loading…
Reference in a new issue