I have multiple jar files I would like to compile into a single dex file.
To compile 1 jar into a dex, you can use the following command:
dx --dex --output="/tmp/dx.dex" "/tmp/input.jar"
Is there a way to compile multiple jars into a single dex file?
Thank you,