pkcs12格式是否与Google Play商店完全兼容以发布我的应用?如果是,我应该使用哪一个对我的apk签名?为什么?非常感谢!解决方案 pkcs12和jks都是保存公钥和私钥(PPK)的格式,用于对APK进行签名以在Google Play商店中发布和发布. PPK的存储方式无关紧要,只要您可以将其用于签名即可.某些工具或服务可能更喜欢使用一种格式,然后通过使用命令行工具,KeyStore Explorer或类似工具在它们之间进行转换.无论转换方向如何,所包含的PPK始终保持不变. 从PKCS12转换为JKS 从JKS转换为PKCS12 KeyStore资源管理器 Android Studio 3.5.3, after the creation of my new Key Store, suggests me to convert it using this command: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! 解决方案 Both pkcs12 and jks are formats holding the public and private key (PPK) used for signing the APK for release and publishing on Google Play Store. It doesn't matter how the PPK is stored as long you can use it for signing. Certain tools or services might prefer using one format over the other and converting between them is by using either command line tools, KeyStore Explorer or similar. Regardless of the conversion direction, the PPK contained stays always the same.Convert from PKCS12 to JKSConvert from JKS to PKCS12KeyStore Explorer 这篇关于jks或pkcs12:我应该使用哪一个为Google Play商店的apk签名?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 07-14 17:49