当前位置:   article > 正文

WARNING: DSL element 'DexOptions.incremental' is obsolete and will be removed at the end of 2018_dsl element 'dexoptions' is obsolete and should be

dsl element 'dexoptions' is obsolete and should be removed. it will be remov

解决办法,在app的build.gradle作如下修改:

android {
    ...
dexOptions {
        incremental true //这个去掉
        javaMaxHeapSize "4g"
    }
 ...
 }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

javaMaxHeapSize "4g"是指定dex运行时的最大的堆空间。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/266361
推荐阅读