美文网首页
安卓编译优化

安卓编译优化

作者: 风就那么大 | 来源:发表于2023-08-15 09:10 被阅读0次
#关闭R文件传递
android.nonTransitiveRClass=true
#开启并行编译
org.gradle.parallel=true
#开启按需构建(对没有更改的模块不再进行编译,非常适合已经组件化的项目)
org.gradle.configureondemand=true
#开启构建缓存
org.gradle.caching=true
#开启Kotlin跨模块增量编译
kotlin.incremental.useClasspathSnapshot=true

相关文章

网友评论

      本文标题:安卓编译优化

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