diff --git a/dependencies.gradle b/dependencies.gradle index 13dc57d7fd..b62cdc1f1e 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -58,6 +58,7 @@ ext.libs = [ 'pagingRuntimeKtx' : "androidx.paging:paging-runtime-ktx:2.1.2", 'coreTesting' : "androidx.arch.core:core-testing:2.1.0", 'testCore' : "androidx.test:core:$androidxTest", + 'orchestrator' : "androidx.test:orchestrator:$androidxTest", 'testRunner' : "androidx.test:runner:$androidxTest", 'testRules' : "androidx.test:rules:$androidxTest", 'espressoCore' : "androidx.test.espresso:espresso-core:$espresso", diff --git a/matrix-sdk-android/build.gradle b/matrix-sdk-android/build.gradle index 588d0f760e..1af95dc89b 100644 --- a/matrix-sdk-android/build.gradle +++ b/matrix-sdk-android/build.gradle @@ -179,5 +179,5 @@ dependencies { // Plant Timber tree for test androidTestImplementation libs.tests.timberJunitRule - androidTestUtil 'androidx.test:orchestrator:1.4.0' + androidTestUtil libs.androidx.orchestrator } diff --git a/vector/build.gradle b/vector/build.gradle index f0c66116b0..fbbe57e16c 100644 --- a/vector/build.gradle +++ b/vector/build.gradle @@ -508,5 +508,5 @@ dependencies { androidTestImplementation('com.adevinta.android:barista:4.1.0') { exclude group: 'org.jetbrains.kotlin' } - androidTestUtil 'androidx.test:orchestrator:1.4.0' + androidTestUtil libs.androidx.orchestrator }