My application reached the 64k limit recently. I tried to create multiple dexes using --multidex option by adding :
exec java $javaOpts -jar "$jarpath" --multi-dex "$@"
in dx batch file.
While the build process completed successfully but upon running the application it gave DexException : Library dex files are not supported in multi-dex mode
Now what does this mean ? I searched google for this but could not find anything useful.