Reputation: 331
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?
Upvotes: 31
Views: 8489
Reputation: 969
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
Upvotes: 22