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.
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.
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