上架Google Play报错:For new apps, Android App Bundles must be signed with an RSA key.

Problem Description

From August 2021, new apps listed on Google Play must use the AAB format, and apps already listed will not be affected. The signature has also become stricter. If you use a signature generated a few years ago, after uploading the aab installation package, the following problems may occur.

insert image description here

For new apps, Android App Bundles must be signed with an RSA key.

According to the error message: the aab installation package needs to be signed with an RSA key. So we use the latest development tools (latest Android Studio version) to create the signature.

solution

Open Android Studio and select Build > Generate Signed Bundle/APK on the menu bar
insert image description here

In the pop-up window, select Android App Bundle or APK and click NEXT
insert image description here

In the next window, click Create New
insert image description here

In the New Key Store window, fill in the signature information and click OK to generate the signature.
insert image description here
Finally, repackage the AAB with the new signature and upload it to Google play.

Guess you like

Origin blog.csdn.net/adojayfan/article/details/122249324