do corona sdk support jks formats or how to get a .pem file from a .keystore file

generate a new key?

keytool -genkeypair -alias upload -keyalg RSA -keysize 2048 -validity 9125 -keystore keystore.jks

I guess you want to reset the key on google store to upload a new build.

I tried this to convert a keystore to jks and it worked:

1. 

keytool -importkeystore -srckeystore mykeystore.keystore -destkeystore keystore.jks -deststoretype pkcs12 -destkeypass “password”

I tried to a build with the jks and it worked fine. So I guess corona supported it.

keytool -genkeypair -alias upload -keyalg RSA -keysize 2048 -validity 9125 -keystore keystore.jks

keytool -export -rfc -alias upload -file upload_certificate.pem -keystore keystore.jks

certificate created.

I didn’t test yet to upload to google if will be work fine, just trying to convince the client to create a new App instead of trying to upload to the old one.

If you manage to reset the key from google and upload the new build successful , please share with us, and if any more steps needed to be done.