According to the 'help' target documentation:
- debug: builds the applications and signs it with a debug key
- release; builds the application: the generated APK file must be signed before it is published
Here is what I found, which is a bit different than what I expected:
debug: ignores keystore definitions in build.properties whether you specify them or not. Which kesystore file is it using? The same as Eclipse: the default debug.keystore file in your Documents and Settings?
It creates two files:
- -debug-unaligned.apk (signed, unaligned)
- -debug.apk (signed, aligned)
release: 'help' says it doesn't sign it. It creates these files:
- -unsigned.apk (unsigned, unaligned)
The next two are only if you have the values specified in build.properties:
- -unaligned.apk (signed, unaligned)
- -release.apk (signed, aligned)
Any helpful comments / verifications will be greatly appreciated.