为什么我的 appbundle 有这个问题?

Why I have this problem with the appbundle?

我在 Play 商店 (https://play.google.com/store/apps/details?id=com.brawlcalculator) 上发布了这个应用程序,我想使用应用程序包减小应用程序的尺寸。我使用 React Native 创建了该应用程序,并在同一个项目中使用了此命令来创建 apk(./gradlew clean && ./gradlew assembleRelease) 并将其成功发布到 playstore,然后我使用此命令创建了应用程序包( ./gradlew bundleDebug),当我尝试上传 appbundle 时,它​​给了我一个错误:"The appbundle have the wrong key"。我必须同时上传 apk 和 appbundle 吗?

assembleRelease 使用您的发布密钥对 APK 进行签名,而 bundleDebug 使用您的调试密钥对 Bundle 进行签名。

相反,您应该上传使用您的发布密钥构建的 Bundle,您可以使用 bundleRelease 任务来完成此操作。