Merge pull request #9974 from nextcloud/chore/espresso-intents-version

build.gradle: Don't hardcode espresso-intents version, use the same as other espresso libs
This commit is contained in:
Álvaro Brey 2022-03-16 13:00:49 +01:00 committed by GitHub
commit ad13f544ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -323,11 +323,12 @@ dependencies {
androidTestImplementation "androidx.test:runner:$androidxTestVersion"
androidTestUtil "androidx.test:orchestrator:$androidxTestVersion"
// Espresso core
// Espresso
androidTestImplementation "androidx.test.espresso:espresso-core:$espressoVersion"
androidTestImplementation "androidx.test.espresso:espresso-contrib:$espressoVersion"
androidTestImplementation "androidx.test.espresso:espresso-web:$espressoVersion"
androidTestImplementation "androidx.test.espresso:espresso-accessibility:$espressoVersion"
androidTestImplementation "androidx.test.espresso:espresso-intents:$espressoVersion"
// Mocking support
androidTestImplementation 'com.github.tmurakami:dexopener:2.0.5' // required to allow mocking on API 27 and older
@ -348,7 +349,6 @@ dependencies {
//androidTestImplementation "com.android.support:support-annotations:${supportLibraryVersion}"
androidTestImplementation 'tools.fastlane:screengrab:2.1.1'
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
androidTestImplementation('androidx.test.espresso:espresso-intents:3.4.0')
implementation "com.github.stateless4j:stateless4j:2.6.0"