How to use jarsigner for signing an apk?

72,213

Solution 1

You can find all the information you need about this topic on d.android.com: http://developer.android.com/tools/publishing/app-signing.html#signapp

jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore my-release-key.keystore
my_application.apk alias_name

One thing that cost me a few hours already, but is also mentioned in the official documentation:

As of JDK 7, the default signing algorithim has changed, requiring you to specify the signature and digest algorithims (-sigalg and -digestalg) when you sign an APK

Solution 2

Use the jarsigner as below:

jarsigner -keystore <keystore_file> -storepass <storepassword> <filenameTosigned> <alias>

Solution 3

For -tsa option enter the next one:

jarsigner -verbose **-tsa http://timestamp.comodoca.com/rfc3161** -sigalg SHA1withRSA -digestalg SHA1 -keystore your_keystor_name.keystore YourAPK.apk youralias_key
Share:
72,213
user3143901
Author by

user3143901

Updated on July 15, 2022

Comments

  • user3143901
    user3143901 almost 2 years

    I have very little programming knowledge.I am able to open jar signer through the command prompt then I get various jar signer options,which i do not know how to use them.Can anyone explain me what should i type in the command prompt in order to sign the app?