0

I've checked out the android docs about creating an application from ant & then blatantly from terminal. I'm trying to figure out how eclipse is able to generate a signed apk file from an android project.... ?

A list of command would be helpful or if there is already a Java script out there I would probably propose on the spot.

Ross The Boss
  • 624
  • 5
  • 17
  • Anything you can do from the Eclipse GUI, you can also do from a command line. For example: http://stackoverflow.com/questions/12667741/how-to-generate-apk-file-using-a-command-line `android update project -t android-10 -p .` – paulsm4 Jul 28 '13 at 01:06

1 Answers1

2

Where did you check in the Android docs? A cursory google search produces this: Building and Running from Command Line.

323go
  • 14,143
  • 6
  • 33
  • 41
  • So here is the fix. make sure to have the correct pathing. @paulsm4 definitely had the right answer minus a few details e.g. android update project -t android-10 -p . where android is actually /path/to/android/sdk – Ross The Boss Jul 31 '13 at 14:21
  • then when you've done that & successfully built a build.xml file you can run ant release or ant debug – Ross The Boss Jul 31 '13 at 14:22