Android - creating an application without eclipse

I have one main Android library application and project that it uses

I can compile and run the application perfectly in eclipse

when I try to create the same application using ant I ran into problems

I cannot get the same result using aapt as eclipse (in background)

The eclipse plugin seems to combine resources (layouts, icons, lines, etc.) for the main application and the library project. Does anyone know how to do this on the command line in aapt

thanks

+4
source share
2 answers

Check the documentation: http://developer.android.com/tools/building/building-cmdline.html

It has everything you need to build without Eclipse.

+3
source

You can compile your application without eclipse using this method. This is a perfect idea. Also see this blog .

0
source

All Articles