I'm using Androids d8 compiler from Delphi, and i need to enable MultiDex. In Android Studio you add the following to your Gradle file:
defaultConfig { minSdkVersion 14 targetSdkVersion 22 multiDexEnabled true }
but as i am using Delphi i cannot do that. How do i turn on MultiDex support to the commandline tool d8.bat?
Turns out it's really simple. Just add this option:
Why this information is so hard to come by, i don't understand. I hate when people don't document their stuff.