As my checking the appcompat folder in my project , there is some support library file into this project , anddroid-support-v4.jar and android-support-v7-appcompat.jar , i updated my support library into sdk manager and i want update them in my project also, how should i do?
Asked
Active
Viewed 1,079 times
3 Answers
0
Inside project directory appcompat_v7 --> libs --> You will find two jar files, anddroid-support-v4.jar and android-support-v7-appcompat.jar, Copy them
Go to your project --> libs --> Paste both files here or the one which is showing Jar mismatch! Fix your dependencies
. Clean Build, your project.
This will put the newly updated jar files to your libs folder of the project. Because the problem was it is not updated in the proj.

Mohammed Ali
- 2,758
- 5
- 23
- 41
0
I found my answer. Right click on project,android tool,add support library,and accept terms and download updates,eclips will update your support libraries on project
0
I had exactly same error and came accross with following solution:
- Close your actual workspace with your DEVELOPMENT project
- Create new workspace
- Create new Android TEST project. This will automatically create appcompat_v7 with Android last updated version.
- Go to your DEVELOPMENT project workspace PATH, (not into Eclipse, The workspace directory)
- Delete appcompat_v7
- Go to your Android TEST project workspace PATH
- Copy this appcompat_v7
- Paste into your DEVELOPMENT project workspace PATH
- Now Open Eclipse with your DEVELOPMENT project workspace
FIXED

Copper Copperone
- 37
- 2