如何创建应用程序包以在 Google Play 商店中发布应用程序?
How do I create an app bundle to publish app on Google Play Store?
我第一次创建一个反应本机应用程序。要发布应用程序,我必须创建一个应用程序包 (.aab)。
如何创建 app bundle?
这就是生成 AAB 捆绑文件的方法。
cd android
./gradlew bundleRelease
从Google看this for pre-requisites. To extract an APK out of the bundle and test it on a device before upload then use the bundletool。
我第一次创建一个反应本机应用程序。要发布应用程序,我必须创建一个应用程序包 (.aab)。
如何创建 app bundle?
这就是生成 AAB 捆绑文件的方法。
cd android
./gradlew bundleRelease
从Google看this for pre-requisites. To extract an APK out of the bundle and test it on a device before upload then use the bundletool。