Android开发中遇到的一些问题!

  1. 编译报错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”
    }

猜你喜欢

转载自blog.csdn.net/qq_33241516/article/details/84304307