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

1

31

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?

Golconda answered 6/11, 2014 at 12:30 Comment(0)
E
22

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

Electronegative answered 11/2, 2015 at 14:44 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.