Android Espresso Issue - Dependency conflict

前端 未结 8 1903
Happy的楠姐
Happy的楠姐 2021-02-12 16:34

I\'m trying to integrate espresso into my application for ui testing. Here are my dependencies in Gradle

dependencies {
    compile fileTree(dir: \'libs\', inclu         


        
8条回答
  •  花落未央
    2021-02-12 17:14

    In the Jake Wharton U2020 application it is solved in the next way

    Add to you gradle.build file

    configurations.all {
        resolutionStrategy {
            force 'com.android.support:support-annotations:23.0.1'
        }
    }
    

提交回复
热议问题