Reputation: 35117
Just curious if anyone has a step by step tutorial on how to set up Eclipse (or a batch file) for "One Click" deployment of an Android app. Automating such tasks like removing the debuggable setting from the project manifest, exporting the unsigned APK and signing it.
Upvotes: 0
Views: 420
Reputation: 31846
The easiest way (according to me) is to use the Android export-wizard.
Right click on your project->Android tools->Export Signed Application Package.
(You'll still have to fix your settings -like removing debuggable- manually though).
Upvotes: 1
Reputation: 52936
You can use Ant to build, sign, etc. If ant release
is not enough, just customize the script to do what you need. There is also some (unofficial) support for Maven.
http://developer.android.com/guide/developing/building/building-cmdline.html
Upvotes: 1