4
Recently, I went to make a clean project in my project, and I don’t know why it didn’t generate the R.java
, and my project was working normally.
So I had the brilliant idea to reinstall the SDK and the Eclipse. And now I’m having problems with the new support library and I keep getting these errors on the console:
C: ADT sdk extras android support v7 appcompat res values-v21 styles_base.xml:75: error: Error retrieving Parent for item: No Resource found that Matches the Given name 'android:Widget.Material.Actionbutton'.
C: ADT sdk extras android support v7 appcompat res values-v21 styles_base.xml:138: error: No Resource found that Matches the Given name: attr 'android:overlap'.
// ....
Does anyone know how to solve?
Could you add your
AndroidManifest
?– Wakim
Check into your
AndroidManifest
if theAndroid:minSdkVersion
andAndroid:targetSdkVersion
are in agreement with version of this lib you are using.– emanuelsn
in my manifest it looks like this: <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="14" />
– João Pedro Segurado
I suggest you eliminate and add back to library v7 Appcompat. This one of mine reply in Soen may help.
– ramaral
I’ve done it and it doesn’t work
– João Pedro Segurado
Apparently changing target in project properties to 21 makes the app work, just needing to put a few more things in the codes...
– João Pedro Segurado
Set the build.Radle configuration
– Cícero Moura
I do not use android studio, but I’ve solved my problem...
– João Pedro Segurado