0
Hello. To add the Google Play Services the dependencies, the image error is shown. I have no idea why, or how to fix it.
- The error is only shown in the file values-21.xml
 - After remove the Google Play Services of the dependencies, the error seems to be fixed, being possible to perform the compilation normally.
 
Gradle:
dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'com.google.android.gms:play-services:7.8.0'
}
						
How is your
compileSdkVersion?– ramaral
@ramaral compileSdkVersion 19 buildToolsVersion "19.1.0" defaultConfig { minSdkVersion 16 targetSdkVersion 19 }
– Yan