编译报错:The android.dexOptions.incremental property is deprecated and it has no effect on the build process.
android.dexOptions.incremental属性已被弃用,它对构建过程没有影响。

处理方法:app的build.gradle修改



去掉  incremental true 

 
//设置虚拟机堆内存空间大小,避免在编译期间OOM
    dexOptions {
      //  incremental true
        javaMaxHeapSize "4g"
    }

 

相关文章:

  • 2021-06-09
  • 2021-07-22
  • 2022-12-23
  • 2022-12-23
  • 2021-09-03
  • 2021-08-04
  • 2021-10-26
猜你喜欢
  • 2022-02-08
  • 2022-02-01
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-10
相关资源
相似解决方案