当前位置: 首页 > 工具软件 > CodeBe > 使用案例 >

Removing unused resources requires unused code shrinking to be turned on

鲜于宜修
2023-12-01
buildTypes {
    release {
        minifyEnabled true   //移除所有未使用的方法、指令以减小 classes.dex 文件
        shrinkResources  true     //移除所有在工程中没有用到的资源
    }
}

注意:您必须启用  minifyEnabled 才能打开代码收缩,然后  shrinkResources 打开资源收缩。

 类似资料:

相关阅读

相关文章

相关问答