我想用新的html5应用来更新安卓的as3应用。问题是,当我使用现有的证书密钥在闪存生成器中进行打包时,我会得到“此证书的错误密码”。
发布于 2013-10-22 01:37:45
尝试使用keytool生成一个新的证书。在mac中,可以执行以下命令来生成新证书:
$ keytool -keystore cert.jks -genkeypair -alias cert -keyalg RSA -keysize 2048 \
-validity 18250 -dname 'CN=cert,OU=org,O=org,L=location,ST=state,C=PH'
$ keytool -keystore cert.jks -exportcert -alias cert \
| openssl x509 -inform der -text
$ keytool -importkeystore -srckeystore cert.jks -destkeystore cert.p12 \
-srcstoretype jks -deststoretype pkcs12这是关于如何对应用程序进行签名的过程。
https://stackoverflow.com/questions/19503320
复制相似问题