我想将我的个人应用程序配置为构建为Android应用程序捆绑包,而不是Jenkins中的apk。我如何配置我的詹金斯来建立aab而不是apk

最佳答案

您需要BundleTool您可以使用bundletool创建aab并对其进行签名,甚至进行测试。
 您可以像其他CLI实用程序一样安装Bundletool,并在Jenkins中执行命令。

或者,您可以只执行诸如bundleRelease之类的Gradle任务来生成您的发布aab。

Here有关如何操作的详细信息。

https://developer.android.com/studio/build/building-cmdline#bundletool-build
https://developer.android.com/studio/command-line/bundletool

10-08 01:50