Reputation: 11
My android project shows error on the root folder(red cross on the application root folder)although any class or resource file inside the root folder does not show any error.
Upvotes: 1
Views: 270
Reputation: 915
First Clean the project if this don't work then try Right Click on the project go to Android Tools -> Fix Project Properties, This should work if there is no errors actually in your project.
Upvotes: 0
Reputation: 200080
Click on the project. Go to the Project -> Clean.. on the toolbar. If you really don't have any errors, then that should fix the project.
Upvotes: 0
Reputation: 1740
I've had this problem before and there have been a couple of different things that you can do to try and resolve it.
Right click on your project in the Package Explorer and go Source > Clean Up...
In the 'gen' directory find the R.java file and delete it. Then open up one of your project's XML files (could be layout, values, it doesn't matter), make a quick change and then save it. This will rebuild R.java to the state it was in before you deleted it, hopefully getting rid of your error.
Upvotes: 2