I'm not sure I understand your question. I'll try something and then let me know if I got it right.
The Eclipse ADT plugin does not use the ant build.xml files -- it has its own build logic and just uses the .classpath and .project files needed by Eclipse. For Ant, you don't need to write the build.xml file yourself -- in fact you should not. Instead you should use "android create project" to create new Android projects. You can use both Ant and Eclipse to work on the same project. If you create your project using the Eclipse Android New Project Wizard, you can run "android update project" to create the build.xml based on the AndroidManifes.xml. if you create your project using "android create project", you get you ant build.xml. You then just need to use the Eclipse Android New Project Wizard in "existing source" mode to create an Eclipse project for it. Hope this helps R/ On Fri, Apr 24, 2009 at 5:39 AM, Fred Grott(shareme) <[email protected]> wrote: > > Good morning, > > I am in the process of writing some new build files for Android Sdk > 1.5 and beyond. > > My question is every tool-IDE plugin the same in that they do not > contribute the ANT task libs to the IDE ant editor and thus have to > manually set the paths in each IDE? > > At them moment i know ADT 0.90 pre is but I am assuming that will > change as we approach the ADT 0.90 final release. > > Just trying to write the buid file so that I idiot proof some issues. > > Thanks > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

