extracting orchestrator dependency to the dependencies.gradle file

This commit is contained in:
Adam Brown 2021-09-23 20:24:16 +01:00
parent 4f340f6b90
commit 7bd8890276
3 changed files with 3 additions and 2 deletions

View file

@ -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",

View file

@ -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
}

View file

@ -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
}