Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
首先,我将我的应用程序从 Flash 迁移到 Java。不久前,我在 Adobe Air 中为我的 Android 应用程序制作了证书(kupony.p12)。
现在我在 Eclipse (Java) 中构建我的应用程序,但我无法用我的旧 p12 签署我的 apk。当我尝试使用 p12 签署我的 apk 时,别名字段为空并且 eclipse 显示信息“无效的密钥库格式”。
我能用它做什么?
http://img707.imageshack.us/img707/1076/flwm.png
我做到了。
从 P12 → JKS 转换。操作说明
keytool -importkeystore -srckeystore [inputName].p12 -srcstoretype PKCS12 -deststoretype JKS -destkeystore [outputName].jks
Eclipse → YourPackage → 右键单击 → Android 工具 → 导出签名的应用程序包。