How to add Multidex support to Android d8.bat commandline

363 Views Asked by At

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?

1

There are 1 best solutions below

1
On

Turns out it's really simple. Just add this option:

    --min-api 21

Why this information is so hard to come by, i don't understand. I hate when people don't document their stuff.