1. 程式人生 > >Android開發中遇到的一些問題!

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”
    }