android.dexOptions.incremental property is deprecated

前端 未结 3 1106
既然无缘
既然无缘 2020-12-03 12:58

When trying to run gradle build, I get following warning in Android Studio 2.2 :

Warning:The android.dexOptions.incremental property is deprecat

3条回答
  •  余生分开走
    2020-12-03 13:53

    Solve Problem after removing deprecated

    dexOptions { incremental true }

    Incremental Java compilation is ON by default.

提交回复
热议问题