Find APK .keystore

1

Does anyone know where I find the .keystore file of my digitally signed APK?

Is it the same .jks?

    
asked by anonymous 14.07.2017 / 17:55

1 answer

1

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.

    
14.07.2017 / 18:12