vote up 0 vote down star

I have an Android 1.5 project in Eclipse and whenever I merely have an xml resource file open the build dies with an error. E.g. if I have the res\layout\main.xml open as the active document it won't build and throws the following error:

Error in an XML file: aborting build. res\layout\main.xml:0: ERROR Resource entry main is already defined.

I then have to delete main.out.xml and switch to any .java file in the project to get it to build.

Do I have something configured incorrectly or is this just an Eclipse or ADT bug? It drove me nuts for an hour before I figure out what the cause was.

flag

2 Answers

vote up 1 vote down check

I ran into this as well.

If you have an xml file open and click the 'Run' button, then instead of running your Android project Eclipse will try to run a transform on the xml file. It then creates a new xml file with the output of the transform and adds it to your project. Then the project will fail to run at all because of the existence of the duplicate xml file.

So make sure you don't have any duplicate xml files in your project (look at the manifest file, as well as layout files). The way I work around this is to make sure the project tree has focus (or just select a tab with a java file) before clicking 'Run'.

There is likely a better way to handle this (via a config change perhaps), but I'm pretty new to Eclipse and that's the workaround I came up with :). Hope that helps.

link|flag
vote up 0 vote down

You should be able to have the xml file open, and build. There is an option if you right click on the project and go to android to clean up the project or reset the properties. Try that and see if it resolves the issue.

link|flag
If I go to Android Tools-> Fix Project Properties it will work once, but if I switch to another xml resource it fails again. I am definitely not the only one with the issue as I found others discussing it here anddev.org/viewtopic.php?p=25517 – duckworth Nov 4 at 15:33
Hmm, i'll have to double check when I get home, but I don't recall that error before. Out of curiosity, what version of the SDK are you using and on what OS? I am using 1.6 on Vista. – broschb Nov 4 at 19:33

Your Answer

Get an OpenID
or

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