パルカワ2

最近はFlutterをやっています

Espresso 2.2でdependencyエラー

compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.0.1'

androidTestCompile 'com.android.support.test:runner:0.3'
androidTestCompile 'com.android.support.test:rules:0.3'
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2'

と書いたらエラーになった。

Warning:Conflict with dependency 'com.android.support:support-annotations'. Resolved versions for app (23.0.1) and test app (22.2.0) differ.

適当にインターネットで得た情報をコピペした事を懺悔しながら、バージョンあげたらなおった。

androidTestCompile 'com.android.support.test:runner:0.4'
androidTestCompile 'com.android.support.test:rules:0.4'
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.1'

Testing Support Library | Android Developers
Android Testing Support Library