您的位置:首页 > 其它

No resource found that matches the given name

2016-05-27 21:11 351 查看
遇到这个问题的时候首先查看compileSdkVersion

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
minSdkVersion 14
targetSdkVersion 23
}
}


和依赖项(dependencies)的支持库是否是同一个版本的

dependencies {
compile 'com.android.support:appcompat-v7:23.2.1'
}


支持库必须是compile ‘com.android.support:appcompat-v7:23.2.1’。

compileSdkVersion 23的编号和compile ‘com.android.support:appcompat-v7:23.2.1’必须是一致的。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: