Android Question create a production release

Mr Blue Sky

Active Member
Licensed User
Longtime User
Hello,
I have trouble understanding if there is a link with the 11.80 (64bit) version that I just installed or where the following error may well come from:

I create a release on play.google.com
I import an aab file and get the message (you need to import an APK or Android App Bundle file for this app) - (This version does not allow adding or removing app bundles.)

If I import an APK version this time, I get the error message (you must import a valid RSA version)

If anyone has experienced something similar and can give me a solution, I'm all ears.

Thanks

release.png
 

mcqueccu

Expert
Licensed User
Longtime User
In your IDE, Goto Tools->Private Sign Key
Look through the signature read-only column. Sigature Algorithm supposed to be SHA256withRSA

If you see : SHA1withDSA - Then it means you are using the old signing key.
You must create A NEW KEY from there to be used for all your new applications.
 
Upvote 0

Mr Blue Sky

Active Member
Licensed User
Longtime User
In your IDE, Goto Tools->Private Sign Key
Look through the signature read-only column. Sigature Algorithm supposed to be SHA256withRSA

If you see : SHA1withDSA - Then it means you are using the old signing key.
You must create A NEW KEY from there to be used for all your new applications.
Really great thank you very much that was the problem.

I was in SHA1 with DSA
and now 1024 bit DSA key

Everything works but have to create a new link on google play because of the change of the key I could not update l'ancien app. only creates a new download application
 
Upvote 0
Top