error : can not reslove symbol 'R' whenever I'm trying to add appcompat-v7:22.0.0 dependency
error : can not reslove symbol 'R' whenever I'm trying to add appcompat-v7:22.0.0 dependency
我正在开发一个基于 support-v4:22.0.0 依赖项的项目。现在我正在尝试添加 Google 地图 Activity.For 添加 Google 地图,appcompat-v7:22.0.0 依赖项正在添加到 Gradle。添加此 activity 后,我在 Gradle 构建错误中收到错误:(1) 检索项目的父项时出错:找不到与给定名称 'xxxxxx:xxxxxxxxxxxx' 匹配的资源。还有它显示的错误:无法解析 'R'.
我尝试清理项目,同步 Gradle,重新启动 Andrid Studio。但是没有任何结果。请帮帮我
自己找到了答案。
将 compileSdkVersion
和 targetSdkVersion
更改为 src/build.gradle
中的 21
为我完成了工作。
android {
compileSdkVersion 21
..........
defaultConfig {
...........
...........
targetSdkVersion 21
}
我正在开发一个基于 support-v4:22.0.0 依赖项的项目。现在我正在尝试添加 Google 地图 Activity.For 添加 Google 地图,appcompat-v7:22.0.0 依赖项正在添加到 Gradle。添加此 activity 后,我在 Gradle 构建错误中收到错误:(1) 检索项目的父项时出错:找不到与给定名称 'xxxxxx:xxxxxxxxxxxx' 匹配的资源。还有它显示的错误:无法解析 'R'.
我尝试清理项目,同步 Gradle,重新启动 Andrid Studio。但是没有任何结果。请帮帮我
自己找到了答案。
将 compileSdkVersion
和 targetSdkVersion
更改为 src/build.gradle
中的 21
为我完成了工作。
android {
compileSdkVersion 21
..........
defaultConfig {
...........
...........
targetSdkVersion 21
}