I have an Android app certificate with a file type of FILE that was created back in 2012 for my Android app written in Java. Now I have updated that app using React Native.
How can I use the existing certificate to generate keystore and sign my updated app to be released on Google Play?
I've tried this even though the React Native certificate extension is .keystore
keytool -importcert -file "your.cer" -keystore your.jks -alias "<anything>"
and I got the following error
keytool error: java.lang.Exception: Input not an X.509 certificate
I expect to have a .keystore file that allows me to release an update of my existing Android app.