Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android how to create apk file using ant script

Tags:

android

apk

ant

anybody tell me, building apk using ant script

like image 600
Bytecode Avatar asked Apr 01 '11 07:04

Bytecode


1 Answers

Check the android developers documentation in the Building and Running from the Command Line topic. Assumed you created your project with the android tool it should be:

ant release

The documentation also describes the "eclipse with ADT" way

If you first set up the project with eclipse than try to create a new temp project with the android create project command line command and take the build.xml (and build.properties + local.properties) from the new project for your existing one.

like image 159
FrVaBe Avatar answered Nov 07 '22 18:11

FrVaBe