clojure-android / lein-droid

A Leiningen plugin for building Clojure/Android projects
Eclipse Public License 1.0
644 stars 56 forks source link

Pass JVM options to dx #17

Closed oakes closed 11 years ago

oakes commented 11 years ago

This provides support for a :dex-opts keyword in the :android map. It works similar to leiningen's :jvm-opts keyword; you use it to pass JVM options to the dx tool. In my case, I need this because I have a big project so I need the dx tool to allocate additional memory. Similar to my previous pull request (I probably should have combined them).

:dex-opts ["-JXmx2048M"]

alexander-yakushev commented 11 years ago

Thank you, Zach. I've merged your changes via rebase, so I just close this pull request.