3

I found this warning after upgrading the latest android studio stable version Warning:The android.dexOptions.incremental property is deprecated and it has no effect on the build process. how to resolve it ?

Vishal Yadav
  • 3,642
  • 3
  • 25
  • 42
Nawrez
  • 3,314
  • 8
  • 28
  • 42
  • 2
    Go to the gradle file and delete dexOptions { incremental true }, it's no longer needed since 2016/4/22 because i'ts implemented by default – JMedinilla Oct 26 '17 at 10:34
  • can you add it as a response for the question to make it helpful and useful :) – Nawrez Oct 26 '17 at 10:38

1 Answers1

3

As JMedinilla mentioned:

Go to the gradle file and delete dexOptions { incremental true }, it's no longer needed since 2016/4/22 because it's implemented by default. Learn more

More Information for troubleshooting gradle errors in AS 3.0

I'm also facing some issues with gradle after upgrading to AS 3.0 today, please take a look at this documentation page this solves my issue.

For more updates about AS 3.0 check out these videos

  1. AS 3.0
  2. Java 8 support
  3. The new Profiler
Vishal Yadav
  • 3,642
  • 3
  • 25
  • 42