Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

According to the 'help' target documentation:

  1. debug: builds the applications and signs it with a debug key
  2. 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:

  1. -debug-unaligned.apk (signed, unaligned)
  2. -debug.apk (signed, aligned)

release: 'help' says it doesn't sign it. It creates these files:

  1. -unsigned.apk (unsigned, unaligned)

The next two are only if you have the values specified in build.properties:

  1. -unaligned.apk (signed, unaligned)
  2. -release.apk (signed, aligned)

Any helpful comments / verifications will be greatly appreciated.

share|improve this question

3 Answers

up vote 7 down vote accepted

Which kesystore file is it using? The same as Eclipse: the default debug.keystore file in your Documents and Settings?

Yes.

share|improve this answer
Thanks for the confirmation. – charlest Jun 12 '11 at 23:23
Thank you! I am assuming it's ok for my teammates to overwrite their default debug.keystore files with mine? Eclipse doesn't try to overwrite this file, right? – manisha Jul 12 '11 at 19:09
@manisha: I am not aware that Eclipse overwrites the file. – CommonsWare Jul 12 '11 at 19:16
@CommonsWare - Sounds good. We tried it out and it seems to be working. My teammate can build from the command line using Ant and can also build from Eclipse. This post helped us out a lot, thank you for your answer! – manisha Jul 14 '11 at 17:21

As far as the release target goes, you will get behaviour like this:

If you have lines like:

key.store=c:/users/me/my-release-key.keystore
key.alias=release_alias
key.store.password=myStorePassword
key.alias.password=myAliasPassword

in your build.properties, it will automatically build and sign your apk with no prompting for anything.

If you comment out the last two lines, then it will prompt you for the passwords, then complete a signed build if the passwords are OK.

If you don't have any of the above lines, then it will just build you an unsigned apk with no prompting for anything and end with:

-release-nosign:
[echo] No key.store and key.alias properties found in build.properties.
[echo] Please sign C:\dev\projects\AntBuilds\MyProject\bin\MyProject-unsigned.apk manually
[echo] and run zipalign from the Android SDK tools.

.

share|improve this answer
That's what I thought: the 'release' part of help could use a little clarification probably, but you find it out the 1st time you do it. I like the prompting for passwords processing. – charlest Jun 12 '11 at 23:17
1  
btw: thanks for the reply! – charlest Jun 12 '11 at 23:18

This answer works for me, I am using ant to auto-compile android app, it prompts and need password, I wrote one file named password, and using the command ---ant release < passwd, However, it also prompts that I need input password.

Using the tips here

key.store=c:/users/me/my-release-key.keystore
key.alias=release_alias
key.store.password=myStorePassword
key.alias.password=myAliasPassword

I solved this problem.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.