1. 程式人生 > >Conflict with dependency "com.android.support-annotations' in project':app'.Resolved ...解決方法

Conflict with dependency "com.android.support-annotations' in project':app'.Resolved ...解決方法

今天新建一個專案的時候在構建過程中出現如下的問題:

這個錯誤的大概意思是:我的名為app的module裡,com.android.support:support-annotations這個依賴衝突了,app裡的版本是26.1.0,但是Test app的版本里是27.1.1。

只需要在我們的app下的build.gradle中新增如下閉包:

configurations.all {
    resolutionStrategy.force 'com.android.support:support-annotations:26.1.0'
}

專案重新build一下就可以了。