Eliasz Kubala
Eliasz Kubala

Reputation: 3904

Use Certifikate from Adobe Air in Eclipse

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

Answers (1)

Eliasz Kubala
Eliasz Kubala

Reputation: 3904

I made it.

  1. Turn On "keytool" function. instruction
  2. Open cmd
  3. With cd function open folder where is your [inputName].p12 Certificate.
  4. Convert from P12 → JKS. instruction

    keytool -importkeystore -srckeystore [inputName].p12 -srcstoretype PKCS12 -deststoretype JKS -destkeystore [outputName].jks

  5. Eclipse → YourPackage → right click → Android Tools → Export Signed Application Package.

  6. Set Location and Password, Alias 1, set Destination APK File and Hit Finish.

Upvotes: 4

Related Questions