我正在尝试使用毕加索为RecyclerView检索图像,但是gradle依赖项存在问题。我不断收到错误消息:
所有com.android.support库必须使用完全相同的版本规范(混合版本可能导致运行时崩溃)。找到版本28.0.0,27.1.0。示例包括com.android.support:animated-vector-drawable:28.0.0和com.android.support:exifinterface:27.1.0
我已经在Google上搜索了很多,但似乎无法提出任何可靠的解决方案。我不想由于奇怪的依赖错误而遇到意想不到的随机问题。解决方案?
///这是我的build.gradle中当前的内容:
依赖性{
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation "com.android.support:recyclerview-v7:28.0.0" // dependency file for RecyclerView
implementation 'com.android.support:cardview-v7:28.0.0' // dependency file for CardView
implementation 'com.squareup.picasso:picasso:2.71828' // dependency for picasso
}