Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does the "Incremental Dex" option in Android Studio do?

In Android Studio, when you select a module in Project Structure window, under Properties tab there is an option to set "Incremental Dex" to true or false. What exactly does it do, and when should it be used?

like image 867
higgurat Avatar asked Nov 06 '14 12:11

higgurat


1 Answers

It is similar to incremental build, which re-builds its outputs by only building if an input file has been modified. It is useful to reduce the build time.

"only the dex files of modified modules are recomputed and repackaged into the APK file" taken from https://developer.android.com/tools/building/multidex.html

like image 58
harrane Avatar answered Nov 10 '22 01:11

harrane