user1753118
user1753118

Reputation: 99

Android - Build application without eclipse

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

I can compile and run the application fine in eclipse

when I try to build the same app using ant I am facing issues

I am not able to get the same result with aapt that eclipse does(in the background)

eclipse plugin seem to merge the resources together (layouts, icons, strings, etc) for both the main app and the library project. Anyone knows how to do this in command line in aapt

Thanks

Upvotes: 4

Views: 6202

Answers (2)

Hardik Joshi
Hardik Joshi

Reputation: 9507

You can compile your applicaiton without eclipse using this way. Its a perfect idea. Also refer this blog.

Upvotes: 0

fcm
fcm

Reputation: 6473

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

It has everything about building without Eclipse.

Upvotes: 3

Related Questions