WARNING: DSL element 'DexOptions.incremental'

WARNING: DSL element 'DexOptions.incremental'

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

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

    dexOptions {
            incremental true //这个去掉
            javaMaxHeapSize "4g"
        }

转载于:https://my.oschina.net/u/4067241/blog/3063318

你可能感兴趣的:(WARNING: DSL element 'DexOptions.incremental')