Play 商店错误 "You uploaded an APK that is signed with an insecure certificate"

Play Store Error "You uploaded an APK that is signed with an insecure certificate"

我正在尝试将使用 Unity3D 开发的游戏上传到 Play 商店。我已经使用 Unity 的内置方法和所有必需的参数对 apk 进行了签名,但是我在尝试将 APK 上传到 Play Store

时遇到了这个错误
You uploaded an APK that is signed with an insecure certificate. RSA or DSA key size must be at least 2048 bits.

现在有同样的错误...也是新应用...看来我们需要手动创建击键

cd "C:\Program Files (x86)\Java\jre6\bin" (where Java installed)
keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000

UPD:是的,它有帮助

我联系了 Google 支持,他们确认这是一个错误。我进行了实时聊天,那个人提到这是他们今天开始看到的一个错误,我不需要采取任何行动。他不能告诉我什么时候修好。

我注意到我能够使用非 2048 位发布密钥将 APK 上传到现有应用程序,但它只针对新应用程序抱怨。

我刚刚联系了 Google 支持,他们说了以下内容:

Currently there is an internal bug which is the cause for this issue. I'm very sorry for the inconvenience, however there currently isn't any update on the matter as of yet.

他们说一旦有更新就会通过电子邮件发送给我,我会在收到电子邮件后 post 在这里更新。

如果您已经使用当前尝试使用的应用发布了应用,我建议您不要生成新证书。

终于Google修复了这个错误!现在和以前一样工作正常。