Reputation: 49
I install Eclipse , when i try to create a new project i have this errors !
I install all libraries Exras . I added support library ? i tired with a lot of solution in SO ... But u have always a some errors
Description Resource Path Location Type error: Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Material.ActionButton'. styles_base.xml /appcompat_v7/res/values-v21 line 75 Android AAPT Problem
Description Resource Path Location Type The container 'Android Dependencies' references non existing library 'C:\Android\appcompat_v7\bin\appcompat_v7.jar' AppTest Build path Build Path Problem
Upvotes: 0
Views: 466
Reputation: 203
Go to Android SDK Manager > Extras > Android Support Library and install it
Upvotes: 0
Reputation: 309
sdk\extras\android\support\v7\appcompat\libs\android-support-v7-appcompat.jar
It is an error of missing android-support-v7-appcompat.jar file in your libs folder. add it from your sdk folder's .
Upvotes: 1
Reputation: 1873
You should go to File -> Import -> (Android Package) Existing Android Code Into Workspace -> Next -> (find folder) your_adt_location -> skd -> extras -> android -> v7 -> appcompact -> finish
, and then add it as a library by Right click -> properties -> Adnroid tab -> library window(there use add and choose it, remove other version if it exists there)
to your project and rebuild it
Upvotes: 1