I have this is in my build.gradle
:
android {
compileSdkVersion 21
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.my.company"
minSdkVersion 16
targetSdkVersion 21
versionCode 1
versionName "1.0.0"
}
...
}
and compile 'com.google.android.gms:play-services:8.4.0'
and I get this error:
Error:(3) Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Inverse'. Error:(18) Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Material.Button.Colored'.
If I remove the dependency of play-services, everything works.
How can I solve it? Thanks