Android Studio 3.5.3, after the creation of my new Key Store, suggests me to convert it using this command:
keytool -importkeystore -srckeystore /path/myKeyStore.jks -destkeystore /path/myKeyStore.jks -deststoretype pkcs12
On the Web and on SO I read a little about it (for example the pkcs12
format is widely supported regardless of the programming language used to read it) but I can't find the answer to this question:
Is the format pkcs12
perfectly compatible with Google Play Store to publish my Apps?
If yes, which one should I use to sign my apks and why?
Thanks a lot!