android studio所有com.android.support库必须使用完全相同的版本

时间:2017-03-08 08:33:07

标签: android gradle

我最近升级到Android Studio 2.3。并且此错误开始出现 enter image description here

这是我的库列表:

compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.android.support', module: 'support-annotations'
})
compile files('libs/wekaSTRIPPED.jar')
compile('com.mikepenz:materialdrawer:5.8.1@aar') { // Material Drawer
    transitive = true
}
compile 'com.android.support:appcompat-v7:25.2.0'
compile 'com.jakewharton:butterknife:8.5.1'
compile 'com.google.dagger:dagger:2.9'
compile 'com.github.wendykierp:JTransforms:3.1'
compile 'com.afollestad.material-dialogs:commons:0.9.3.0'
compile 'org.greenrobot:eventbus:3.0.0'
compile 'com.github.paolorotolo:appintro:4.1.0'
compile 'com.android.support:support-v4:25.2.0'
compile 'com.android.support:design:25.2.0'
compile 'com.borax12.materialdaterangepicker:library:1.9'
compile 'com.evernote:android-job:1.1.7' // Scheduling library
testCompile 'junit:junit:4.12'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'
annotationProcessor 'com.google.dagger:dagger-compiler:2.9'

关于如何解决这个问题的任何想法?先感谢您!

1 个答案:

答案 0 :(得分:1)

我在更新到Android Studio 2.3时遇到了类似的问题。我通过使用Error在我的项目中搜索所有支持库(我搜索 25.1.1 )并用25.2.0替换,解决了。我认为很多代码在您的库和项目中使用25.1.1。

您可以在项目中打开外部库以显示所有依赖项。您应该更新到新的库版本(使用支持库的lib):

对于前: https://github.com/mikepenz/MaterialDrawer - 新版本为25.1.1,使用25.2.0

enter image description here