Skip to content
This repository was archived by the owner on Aug 16, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions advanced-coroutines-codelab/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ buildscript {
// local variables (use def)
def androidx_test_version = '1.2.0'
def annotations_version = '1.1.0'
def arch_core_test_version = '2.1.0'
def appcompat_version = '1.1.0'
def constraint_layout_version = '1.1.3'
def coroutines_android_version = '1.3.0'
Expand Down Expand Up @@ -81,7 +82,7 @@ buildscript {
"org.mockito:mockito-core:2.23.0",

// Architecture Components testing libraries
"androidx.arch.core:core-testing:$lifecycle_version",
"androidx.arch.core:core-testing:$arch_core_test_version",

"com.google.truth:truth:$truth_version",
]
Expand All @@ -97,7 +98,7 @@ buildscript {
"androidx.test.espresso:espresso-intents:$expresso_version",

// Architecture Components testing libraries
"androidx.arch.core:core-testing:$lifecycle_version",
"androidx.arch.core:core-testing:$arch_core_test_version",
"androidx.work:work-testing:$work_version",

]
Expand Down
5 changes: 3 additions & 2 deletions coroutines-codelab/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ buildscript {
// local variables (use def)
def androidx_test_version = '1.2.0'
def appcompat_version = '1.1.0'
def arch_core_test_version = '2.1.0'
def constraint_layout_version = '1.1.3'
def coroutines_android_version = '1.3.2'
def expresso_version = '3.2.0'
Expand Down Expand Up @@ -86,7 +87,7 @@ buildscript {
"org.mockito:mockito-core:2.23.0",

// Architecture Components testing libraries
"androidx.arch.core:core-testing:$lifecycle_version"
"androidx.arch.core:core-testing:$arch_core_test_version"
]

androidTestLibraries = [
Expand All @@ -100,7 +101,7 @@ buildscript {
"androidx.test.espresso:espresso-intents:$expresso_version",

// Architecture Components testing libraries
"androidx.arch.core:core-testing:$lifecycle_version",
"androidx.arch.core:core-testing:$arch_core_test_version",
"androidx.work:work-testing:$work_version",

// Coroutines testing
Expand Down