How to get keystore file from signed apk

后端 未结 2 583
慢半拍i
慢半拍i 2021-02-10 06:23

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 replac

2条回答
  •  被撕碎了的回忆
    2021-02-10 06:56

    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.

提交回复
热议问题