Issue
In an Android application I had built, I added the signature pem and pk8 of the "Apk Icon Editor" program.
The Apk Icon Editor signature folder is located in C:\Program Files(x86)\APK Icon Editor\signer, and contains 4 files inside: apk.jar, signapk.jar, certificate.pem, key.pk8
How can I create a .keystore from the Apk Icon Editor program I have, so that I can easily do the upgrades through Android Studio?
What I have tried is this ..but then what am I suppose to do? Generate keystore:
keytool -genkey -alias myalias -keyalg RSA -keystore keystore.jks
Thanks in anvanced..
Solution
I think the best way to do that is:
1.Generate keystore as you did:
keytool -genkey -alias myalias -keyalg RSA -keystore keystore.jks
Download Keystore explorer and drop your new keystore there.
Click Import Key Pair in Keystore explorer and click "PKCS #8"
If you don't remember your password disable "Encrypted Private Key" option.
Upload your pk8 file and your certificate from browse. Delete the first keystore and save.
That's all!
Answered By - ric12g
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.