如果导入的第三方框架中的build.gradle中的依赖是你本地sdk中所没有的依赖库,这时会报错的,比如
解决方法
在项目的build.gradle里面最上层填写这样一句话
configurations.all {
resolutionStrategy.force 'com.android.support:support-annotations:23.1.0'
}
我当时是出现了两个依赖库没有的,如下写法:
configurations.all {
resolutionStrategy.force 'com.android.support:support-annotations:25.1.0'
resolutionStrategy.force 'com.android.support:appcompat-v7:25.3.1'
}
build.gradle的顶部写了之后,下面依赖就不用再写compile 'com.android.support:support-annotations:25.1.0'和compile 'com.android.support:appcompat-v7:25.3.1'了
参考文章:
https://blog.csdn.net/pyfysf/article/details/77894331
网友评论