I am developing simple android application. But when I run eclipse tell me the error:Your project contains error(s), please fix it before running it. I can't find any error in my project or there is not have error in my application. There have red cross under the application name but it's no under the another file name.

Does some guys meet this issue?

link|improve this question
Unfortunately none of these worked for me...Creating new projects and deleting .android...didn't work. Apparently Eclipse lost some setting and refuses to run any new project either Java or Android – JPM Jan 16 at 22:31
feedback

18 Answers

That usually comes form errors in the build path

if your using eclipse there is a view you can add that list all the errors called "Problems"

otherwise you can try to clean the project that usually solve a few problems

finally if you add or altered resources from outside your IDE you'll want to reload the resources and clean

EDIT (Comment by anonymous user)

This can also be caused by an out of date "Debug Certificate" fixed as follows:

Delete your debug certificate under ~/.android/debug.keystore (on Linux and Mac OS X); the directory is something like %USERPROFILE%/.androidon Windows.

The Eclipse plugin should then generate a new certificate when you next try to build a debug package. You may need to clean and then build to generate the certificate.

This is also another fix for the "setContentView(R.layout.main);" error that says it cannot find R.layout.main when it is actually generated. (R cannot be resolved to a variable).

This is also another fix for the error "Your project has errors..." and you cannot find any. Clean and rebuild are still necessary after generating a new debug certificate.

link|improve this answer
1  
It is important to understand that problems will not always be reported against a source code file at a line number. Issues with project as a whole, like build path problems, will be attached at project level. You will not be able to see the problem text anywhere other than the Problems view. – Konstantin Komissarchik Feb 10 '11 at 20:46
the expired debug key usually does me in. every year. i really should put a reminder in my calendar or something. – Harlo Holmes Mar 15 at 16:43
1  
This fixes the error for me too – handyande Apr 5 at 14:35
It fixes my same error, at least the red x disappeared from project name.Thanks...great help – wocmultimedia Apr 18 at 22:14
feedback

First go to window:->show view:->error logs in menu.it will display error logs if you have any.and try to clean project and build it again.

link|improve this answer
It is a good idea in general to keep this error view around - and also to try to fix the warnings it shows. – Heiko Rupp Feb 10 '11 at 8:28
1  
The Error Log view shows malfunction in Eclipse plugins. It is helpful for reporting issues, but the entries aren't going to point to problem in user application code. For that you want the Problems view. – Konstantin Komissarchik Feb 10 '11 at 20:38
I've similar issue (but with NDK/C++). My NDK+android projects compiles successfully, but Eclipse doesn't allow to run/debug it. I have an error on #include <list> (I haven't added STL path to resources, and don't want to do it). How could this be possible, is there an option to turn it off? I want to see that not-so-real 'errors', but I want to run application (which does NOT contain any compile/link errors). – kibab Nov 17 '11 at 19:44
feedback

I come across this error often when I import a new project in my workspace.

Reason: Some necessary files (Like R.Java) is not generated in its respective packages.

Cure: Clean and build projects, All the files that needs to be auto generated will be there on place after building the project.

Best Luck.

link|improve this answer
feedback

I had this exact same problem. One solution that would work would be to create a brand new project, but I don't think there's any need for that. For me the problem was that the debug certificate that gets auto-generated had expired. Deleting this file allowed Eclipse to rebuild that file, which solved the problem. You can't run an app with an invalid certificate, whether it be a debug or release certificate. Note that cleaning my project did not work. For more information, see: "Debug certificate expired" error in eclipse android plugins

link|improve this answer
You are not alone, see also: stackoverflow.com/questions/8467835/… – Asmo Soinio Jan 12 at 11:49
This fixed the issue for me. Good one. – Sharique Abdullah 2 days ago
feedback

Go to projects menu, click on clean menu item.

After that close the eclipse and reopen and try compiling..

It is software glitch you find some times.

link|improve this answer
feedback

I saw this with an existing project. I had made a few edits, but hadn't imported anything new. Restarting Eclipse didn't help.

Project->Clean did solve the problem.

link|improve this answer
feedback

If none of the above solution work, you should check the READ ONLY property of the Project folder, if it is Read-Only, the compiler will not be able to overwrite the resources, R.java and other dex APK etc files and hence this will occur.. This happened to me and I fixed after a long struggle.. Happy Programming.

link|improve this answer
feedback

I have had a similar problem.

Under "problems" tab I have found an error saying "Error generating final archive: Debug Certificate expired on 2/22/12 1:49 PM"

So my advice is to look in the problems tab to get some more info.

Bye

link|improve this answer
feedback

Recently I came across this error. I was really in a corner with no help, then I figured it out. This error can occur for the following reasons:

  • An error in the project code
  • Improper linking of external library files to the project
  • Most important: if your debug.keystore file is expired.

The first 2 cases are easily identifiable but the third one is like searching a black box in a dark room.

So in addition to Project -> Clean, remove your debug.keystore file also.

I am using Mac + Eclipse so to remove, I wrote the command rm ~/.android/.debug.keystore in a terminal.

link|improve this answer
feedback

Delete the .android folder from your Documents&settings\User\ on XP and \User\ on Win7. Recreate the AVD again and create a new project.

link|improve this answer
feedback

Check that you don't have any images with a space

link|improve this answer
feedback

I had the exact same problem after updating the SDK and ADT. My issue was resolved by deleting the .android folder (hidden) under C:\Users\USERNAME\

link|improve this answer
feedback

What caused this problem for me was none of the above, but simply that I'd left the "debuggable" attribute to false in the manifest.xml file after doing a release. D'oh!

Of course neither the LogCat, Error log, Console, or Problems window alerted me to this..

link|improve this answer
feedback

it can also happen if you move required files. Simply check Problems View (menu window -> show view -> Problems) as told here

link|improve this answer
feedback

Simulate your self some error in class. Then save it and it would show more errors than you simulated. For me it was incorrect import and this helped.

link|improve this answer
feedback

For some reason eclipse only showed a ! error on root and didn't specified what error it was. Go in Windows -> Show Views -> Problems. You might find all previous errors there, delete them, do a clean build and build again. You'll see the exact errors.

Eclipse shows an error on android project but can find the error

link|improve this answer
feedback

I had the same error, when I copied a project to another computer.

I then checked all properties of the project on both machines, and the only thing that was different was the order of items in Java Build Path - tab Order and Export.

I moved the items Android X.X.X and Android Dependencies above the other 2 in the list (in my case, src and gen folders) and voila, it worked again!

I'm not really sure if the different order was actually the problem, but at least changing it (and saving the properties again) seemed to help...

link|improve this answer
feedback

protected by Mat Apr 22 at 6:59

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.