zoli2k
zoli2k

Reputation: 3458

Build android project from command line

I would like to build and android project from command line on Linux. In the root directory of the project there are the following files and directories:

AndroidManifest.xml build.xml default.properties res/ src/

Can you provide a sample Makefile how to build this project?

Upvotes: 4

Views: 2688

Answers (2)

Scott C Wilson
Scott C Wilson

Reputation: 20016

The build.xml file is input to the Ant program, which will build your project. Use "ant build"

Upvotes: 3

Jim Blackler
Jim Blackler

Reputation: 23169

Do you have 'ant' installed? Try ant debug

Upvotes: 4

Related Questions