How to get keystore file from signed apk
Asked Answered
S

1

8

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.

Shiftless answered 1/4, 2016 at 5:52 Comment(2)
I don't think you can get keystore like thisSecretariat
Possible duplicate of Android: I lost my android key store, what should I do?Abbey
K
16
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.

Kippie answered 29/8, 2017 at 12:23 Comment(5)
So If I use same information then I will get same keystore file? with same SHA?Westminster
@PratikButani, hi. Could you figure out how ti use this information to generate a keystore file or sign an .apk file?Isomorph
I have got the information . Now how to get it as key storeWhitherward
You cannot. The whole point of a keystore is to prevent people who haven't got it to pretend they are you. Unfortunately you probably need to make a new keystore and lose the possibility to smoothly update the app.Tenuto
This is very useful to find keystore information. Thank youVet

© 2022 - 2024 — McMap. All rights reserved.