Skip to content

Commit

Permalink
fixed : configuration of androidxTestEspresso
Browse files Browse the repository at this point in the history
  • Loading branch information
neeldoshii committed Jul 10, 2024
1 parent 7d6e221 commit 223f669
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion WordPress/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -493,14 +493,24 @@ dependencies {
androidTestImplementation libs.squareup.okhttp.mockWebServer
androidTestImplementation libs.androidx.test.ui.automator
androidTestImplementation libs.androidx.test.espresso.core, {
version {
strictly libs.versions.androidxTestEspresso.get()
}
exclude group: 'com.android.support', module: 'support-annotations'
}
androidTestImplementation(libs.androidx.test.espresso.contrib) {
version {
strictly libs.versions.androidxTestEspresso.get()
}
exclude group: 'com.android.support', module: 'appcompat'
exclude group: 'com.android.support', module: 'support-v4'
exclude module: 'recyclerview-v7'
}
androidTestImplementation(libs.androidx.test.espresso.accessibility)
androidTestImplementation(libs.androidx.test.espresso.accessibility){
version {
strictly libs.versions.androidxTestEspresso.get()
}
}
androidTestImplementation(libs.wiremock) {
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
exclude group: 'org.apache.commons', module: 'commons-lang3'
Expand Down

0 comments on commit 223f669

Please sign in to comment.