我在build.gradle
:
android {
compileSdkVersion 21
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.my.company"
minSdkVersion 16
targetSdkVersion 21
versionCode 1
versionName "1.0.0"
}
...
}
和compile 'com.google.android.gms:play-services:8.4.0'
我收到此错误:
错误:(3)检索项目的父项时出错:找不到资源 匹配给定的名称 '机器人:TextAppearance.Material.Widget.Button.Inverse'。 错误:(18) 检索项目的父项时出错:找不到与之匹配的资源 名字叫'android:Widget.Material.Button.Colored'。
如果删除播放服务的依赖关系,一切正常。
我该如何解决?感谢
答案 0 :(得分:1)
将compileSdkVersion
设置为23,或切换到play-services
的旧版本。
答案 1 :(得分:1)
'com.google.android.gms:play-services:8.4.0'
与支持库v23 有依赖关系。
这意味着您必须使用 api 23 进行编译。
android {
compileSdkVersion 23
}