Reputation: 1155
I need to provide a PEM file to Google so that they can re-key the app signing and I can publish updates to the app. They have their key in Google Console, but my private key was corrupted by Xamarin. Google will accept a new PEM file from my new keystore to reconnect them so that I may distribute again.
However, Xamarin has its own proprietary .keystore file format. I've used keytool to extract a PEM from a Java jks.
How can I get the PEM to send to Google from a Xamarin .keystore file?
Upvotes: 0
Views: 455
Reputation: 24470
You should be able to export a PEM like so:
keytool -export -rfc -alias your-alias -file play-store.pem -keystore your.keystore
Upvotes: 1