0

I am having trouble to export SHA1 fingerprint for Release an application.Can anyone please tell me the details of how to get SHA1 fingerprint for releasing a signed application?

Amit Saha
  • 121
  • 1
  • 10
  • Duplicate Question---------http://stackoverflow.com/questions/18328730/how-to-create-a-release-signed-apk-file-using-gradle,,,,,,,,,,,http://developer.android.com/tools/publishing/app-signing.html – Rahul Dec 09 '15 at 04:57
  • 1
    Possible duplicate of [How to get the SHA1 fingerprint certificate in android studio for debug mode?](http://stackoverflow.com/questions/27609442/how-to-get-the-sha1-fingerprint-certificate-in-android-studio-for-debug-mode) – Mayank Dec 09 '15 at 05:19
  • no it's not duplicate... @Mayank – Amit Saha Dec 09 '15 at 11:05

1 Answers1

0

Through command goto your java directory , below is the directory structure

.../jvm/jdk1.7.0/bin

After that type the command

keytool -list -v -keystore /home/hb/Documents/Testing.jks -alias testing -storepass testing -keypass testing

here Testing.jks is the project keystore, alias,storepass,keypass which you have given at the time of generating keystore.

Nigam Patro
  • 2,760
  • 1
  • 18
  • 33