Bescottee苦しいときは伸びてるとき、楽なときは伸びていないとき

2 support-annotaion and espresso library differentation


以下のようなエラーがでる場合があります。これは、espressoのライブラリが古いandroid support anotations library を指定しているためです。


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

build.gradleに以下を記載すれば解決できます。


androidTestCompile('com.android.support.test:runner:0.3') {
exclude module: 'support-annotations'
}
androidTestCompile('com.android.support.test:rules:0.3') {
exclude module: 'support-annotations'
}
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2') {
exclude module: 'support-annotations'
}

コメントをどうぞ