Reputation: 3904
First of all, i migrate with my apps from Flash to Java. I made certificate in Adobe Air for my Android App some time ago (kupony.p12).
Now i'm build my application in Eclipse (Java) but i can't sign my apk with my Old p12. When i try sign my apk with p12 then alias field is empty and eclipse show info "Invalid Keystore format".
What can i do with that?
http://img707.imageshack.us/img707/1076/flwm.png
Upvotes: 0
Views: 404
Reputation: 3904
I made it.
Convert from P12 → JKS. instruction
keytool -importkeystore -srckeystore [inputName].p12 -srcstoretype PKCS12 -deststoretype JKS -destkeystore [outputName].jks
Eclipse → YourPackage → right click → Android Tools → Export Signed Application Package.
Upvotes: 4