Does anyone know where I find the .keystore file of my digitally signed APK?
Is it the same .jks?
Does anyone know where I find the .keystore file of my digitally signed APK?
Is it the same .jks?
JKS (Java KeyStore) you can not find it if you have not yet created it. Previously the certificate extension was .keystore
then after a while Google changed to .jks
. To create see the command below as an example:
$ keytool -genkey -v -keystore my-key.jks -alias alias_name -keyalg
RSA -keysize 2048 -validity 10000
See here in this article more details on how to generate release / debug certificate
Is it the same .jks?
Yes it's the same.