0

I use hudson to make automated builds on unix. But is there any command line tools to setup automated build to generate apk file and sign it using my certificate.

Thanks.

dcanh121
  • 4,665
  • 11
  • 37
  • 84

1 Answers1

0

You can use ant to build your project, android SDK already includes configuration for it, can be found in $ANDROID_SDK_DIR/tools/ant/build.xml. See more information in official documentation

Another way is to use maven-android-plugin

I use ant + msbuild + CruiseControl.Net

marwinXXII
  • 1,456
  • 14
  • 21
  • by the way, may be it is not the best idea to use that build.xml but instead generate one for your project http://developer.android.com/tools/projects/projects-cmdline.html – marwinXXII Sep 13 '12 at 14:32