Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android project won't build when editing a resource file

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.

Then I 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.

like image 387
John Lemp Avatar asked Nov 04 '09 14:11

John Lemp


4 Answers

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.

like image 154
Kevin Tighe Avatar answered Nov 07 '22 05:11

Kevin Tighe


To configure the run button to always run the previously launched application:

Eclipse -> Window -> Preferences -> Run/Debug -> Launching -> Launch Operation -> Always Launch the previously launched application

like image 39
Lance Lefebure Avatar answered Nov 07 '22 07:11

Lance Lefebure


Eclipce / Project / Clean ... And run your project again ...

like image 7
arlen Avatar answered Nov 07 '22 05:11

arlen


I had same issue then trying to build project with ant. So I just cleared bin/ directory and the project was build.

like image 2
Robert Avatar answered Nov 07 '22 06:11

Robert