views:

214

answers:

1

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?

+3  A: 

Do you have 'ant' installed? Try ant debug

Jim Blackler