1. 程式人生 > >The `android.dexOptions.incremental` property is deprecated and it has no effect on the build process.

The `android.dexOptions.incremental` property is deprecated and it has no effect on the build process.

編譯報錯: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"
    }