Manifest merger failed:uses-sdk:minSdkVersion 11 cannot be smaller than version 14 declared in libr

来源:互联网 发布:域名信息备案查询 编辑:程序博客网 时间:2024/06/03 21:40
在导入项目时遇到的问题,解决:
在app的build gradle 文件中将
dependencies {    compile 'com.android.support:appcompat-v7:+' }
v7包是Android向下兼容用的。
改为:
dependencies {    compile 'com.android.support:appcompat-v7:20.+' }

即可解决!
阅读全文
0 0