Espressoでビルドエラーがでたら
提供: tknotebook
メインページ>コンピュータの部屋#Android>Android Tips
Espresso を使う際、以下のようなバージョンコンフリクトが出ることがあります。
Conflict with dependency 'com.android.support:support-annotations'. Resolved versions for app (23.1.0) and test app (23.0.1) differ.
これは build.gradle の dependencies の直前に、以下のコードを挿入して、23.1.0 を強制的に使うようにすることで解消できます。
configurations.all { resolutionStrategy.force 'com.android.support:support-annotations:23.1.0' }