I have already signed my apk with default debug.keystore key.But unfortunately my system destroyed,Now I need to get the key store from the already signed apk.
to replace with old apk with new apk.
I have MD5,SHA fingerprints with.But i could make them as keystore to sign the apk.
Any suggestions would be appreciated.Thank you in advance.
解决方案unzip -p Name-of-apk.apk META-INF/CERT.RSA | keytool -printcert
is what I used.
It produces information such as the owner, issuer, serial number, valid through, certificate finger prints, signature algorithms and version.
博主用默认调试密钥库对APK签名后系统损坏,需从已签名APK获取密钥库以替换旧APK。博主有MD5、SHA指纹但无法将其转为密钥库签名。最后给出解决方案,即使用命令unzip -p Name - of - apk.apk META - INF/CERT.RSA | keytool - printcert获取相关信息。
2319

被折叠的 条评论
为什么被折叠?



