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

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/u014619545/article/details/76522394
在导入项目时遇到的问题,解决:
在app的build gradle 文件中将
dependencies {
    compile 'com.android.support:appcompat-v7:+'
 }
v7包是Android向下兼容用的。
改为:
dependencies {
    compile 'com.android.support:appcompat-v7:20.+'
 }

即可解决!

猜你喜欢

转载自blog.csdn.net/u014619545/article/details/76522394