Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

exports certificate of signing key to .pem extension in Android Studio

I need to change the signing key of my published app on Google Play, so I need to export the certificate of the new app signature from .jks extension to .pem, but I can not and will not need it to send the key exchange request for Google. Could someone help me ...

like image 438
Marcos Silva Martins Avatar asked Oct 31 '17 15:10

Marcos Silva Martins


1 Answers

You can export the certificate of your new app signature from .jks file in two way:

  • Via CMD/PowerShell or Terminal : keytool -export -rfc -alias upload -file upload_certificate.pem -keystore keystore.jks

  • using Key Store Explorer software (download from here : http://keystore-explorer.org/downloads.html) and to know how to export in .pem format using this software see this 1:09 minute video in the following link : https://www.youtube.com/watch?v=2VsYakH3OUE

like image 143
bhobogure_sust Avatar answered Sep 20 '22 07:09

bhobogure_sust