I\'m trying to integrate espresso into my application for ui testing. Here are my dependencies in Gradle
dependencies { compile fileTree(dir: \'libs\', inclu
In the Jake Wharton U2020 application it is solved in the next way
Add to you gradle.build file
gradle.build
configurations.all { resolutionStrategy { force 'com.android.support:support-annotations:23.0.1' } }