Skip to content

Commit

Permalink
upgrade some androidx.test modules
Browse files Browse the repository at this point in the history
  • Loading branch information
amberin committed Mar 16, 2024
1 parent 2e85bb8 commit b485be0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,9 @@ dependencies {
androidTestImplementation "androidx.test.espresso:espresso-core:$versions.android_test_espresso"
androidTestImplementation "androidx.test.espresso:espresso-contrib:$versions.android_test_espresso"
androidTestImplementation "androidx.test.espresso:espresso-intents:$versions.android_test_espresso"
androidTestImplementation "androidx.test:runner:$versions.android_test"
androidTestImplementation "androidx.test:runner:$versions.android_test_runner"
androidTestImplementation "androidx.test:rules:$versions.android_test"
androidTestImplementation "androidx.test:monitor:$versions.android_test_monitor"
androidTestImplementation "androidx.test.ext:junit:$versions.android_test_ext_junit"

/* For running tests on lower API versions (e.g. 18) to avoid:
Expand All @@ -160,7 +161,7 @@ dependencies {
implementation "androidx.test:core:$versions.android_test"

// For ANDROIDX_TEST_ORCHESTRATOR
androidTestUtil "androidx.test:orchestrator:$versions.android_test"
androidTestUtil "androidx.test:orchestrator:$versions.android_test_orchestrator"

androidTestImplementation "androidx.test.uiautomator:uiautomator:$versions.android_test_uiautomator"

Expand Down
6 changes: 6 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ buildscript {

versions.android_test = '1.4.0'

versions.android_test_runner = '1.5.0'

versions.android_test_orchestrator = '1.4.2'

versions.android_test_monitor = '1.6.0'

versions.android_test_ext_junit = '1.1.3'

versions.android_test_uiautomator = '2.2.0'
Expand Down

0 comments on commit b485be0

Please sign in to comment.