AppBundle

作者: 小虫虫奇遇记 | 来源:发表于2021-10-01 21:37 被阅读0次

    AppBundle

    配置

    • build.gradle
     android{
        bundle {
            language {
                // Specifies that the app bundle should not support
                // configuration APKs for language resources. These
                // resources are instead packaged with each base and
                // feature APK.
                enableSplit = true
            }
            density {
                // This property is set to true by default.
                enableSplit = true
            }
            abi {
                // This property is set to true by default.
                enableSplit = true
            }
         }
       }
    

    打包 bundleTool工具

    相关文章

      网友评论

          本文标题:AppBundle

          本文链接:https://www.haomeiwen.com/subject/kjibbltx.html