「Espressoでビルドエラーがでたら」の版間の差分
提供: tknotebook
(ページの作成:「Category:コンピュータCategory:Android メインページ>コンピュータの部屋#Android>Android Tips Espresso を使う際、以下...」) |
(相違点なし)
|
2015年10月28日 (水) 08:36時点における最新版
メインページ>コンピュータの部屋#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' }