Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

How to sign existing Play Store app built and signed with Animate (AIR) for new App Bundle format.

Participant ,
Jan 19, 2021 Jan 19, 2021

Google uses the new App Bundle and requires developers to use the same certificate to sign the bundle.

My apps apk was always signed with a temperary (.p12) certificate generated in Animate.

 

I've used keytool to convert the p12 to JKS format

 

      keytool -v -importkeystore -srckeystore "TempCert2016.p12" -srcstoretype PKCS12 -destkeystore         TempCert2016.jks -deststoretype JKS

 

Now I should be able to use PEPK.jar supplied by google to make a PEM

 

    java -jar pepk.jar --keystore=TempCert2016.jks --alias=foo --output=TempCert2016.pem --encryptionkey=<KEY>

 

The problem I'm having is, what was the alias for the temporary p12 certificate generated by Animate in 2016?  Or maybe versions before that? 

TOPICS
How to , Publish package
526
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Jan 19, 2021 Jan 19, 2021
LATEST

I got the answer using openssl

 

openssl pkcs12 -info -nodes -in TempCert2016.p12

The 'friendly name' is '1'.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines