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

I am trying to sign my apk file. I can't figure out how to do it. I can't find good in-depth directions. I have very little programing experience, so any help would be appreciated.

share|improve this question
check this: How to sign Android project apk – arunsoorya Apr 4 '11 at 15:00
You can find a great tutorial about this here at androidcookers.co.cc/2012/06/… – user1456256 Jun 14 '12 at 12:57

2 Answers

up vote 41 down vote accepted

The manual is clear enough. Please specify what part you get stuck with after you work trought it, I'd suggest:

http://developer.android.com/guide/publishing/app-signing.html

Ok, a small overview, without reference or eclipse around, so leave some space for errors, but it works like this

  • open your project in eclips
  • press right-mouse, tools (android tools?) - > export signed application (apk?)
  • go trough the wizzard:
  • make a new key-store. remember that password
  • sign your app
  • save it etc.

Also, from the link:

Compile and sign with Eclipse ADT

If you are using Eclipse with the ADT plugin, you can use the Export Wizard to export a signed .apk (and even create a new keystore, if necessary). The Export Wizard performs all the interaction with the Keytool and Jarsigner for you, which allows you to sign the package using a GUI instead of performing the manual procedures to compile, sign, and align, as discussed above. Once the wizard has compiled and signed your package, it will also perfom package alignment with zipalign. Because the Export Wizard uses both Keytool and Jarsigner, you should ensure that they are accessible on your computer, as described above in the Basic Setup for Signing.

To create a signed and aligned .apk in Eclipse:

  1. Select the project in the Package Explorer and select File > Export.
  2. Open the Android folder, select Export Android Application, and click Next.

    The Export Android Application wizard now starts, which will guide you through the process of signing your application, including steps for selecting the private key with which to sign the .apk (or creating a new keystore and private key).

  3. Complete the Export Wizard and your application will be compiled, signed, aligned, and ready for distribution.
share|improve this answer
I don't understand how to get started. I am using eclipse Version: Helios Service Release 1 – wardedmocha Jan 31 '11 at 16:11
i'v added something to my answer – Nanne Jan 31 '11 at 16:15
but please read the WHOLE thing. there's some tips in the end for eclipse too – Nanne Jan 31 '11 at 16:16
in the key creation what do i need to enter for the alias? – wardedmocha Jan 31 '11 at 16:27
3  
Did you read the manual? -alias <alias_name> An alias for the key. Only the first 8 characters of the alias are used. It's just an alias. A name, if you will. i'd suggest "firstkey" :-) – Nanne Jan 31 '11 at 16:29
show 3 more comments

I ran into this problem and was solved by checking the min sdk version in the manifest. It was set to 15 (ICS), but my phone was running 10(Gingerbread)

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.