浏览代码

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
Álvaro Brey 3 年之前
父节点
当前提交
ad13f544ee
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      app/build.gradle

+ 2 - 2
app/build.gradle

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