Files
gitea-docker/android/project.clj
2015-10-30 17:27:15 -07:00

62 lines
3.0 KiB
Clojure

(defproject advent "0.0.1-SNAPSHOT"
:description "FIXME: write description"
:dependencies [[com.badlogicgames.gdx/gdx "1.5.3" :use-resources true]
[com.badlogicgames.gdx/gdx-backend-lwjgl "1.5.3"]
[com.badlogicgames.gdx/gdx-box2d "1.5.3"]
[com.badlogicgames.gdx/gdx-tools "1.5.3"]
[com.badlogicgames.gdx/gdx-backend-android "1.5.3"]
[neko/neko "4.0.0-alpha5"]
[org.clojure-android/clojure "1.7.0-r2"]
[org.clojure/tools.nrepl "0.2.7"]
[play-clj "0.4.5-BRYCE"]
[org.clojure/data.priority-map "0.0.5"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]]
:plugins [[lein-droid "0.4.4-SNAPSHOT"]]
:profiles {:dev {:dependencies [[android/tools.nrepl "0.2.0-bigstack"]
[compliment "0.1.3"]]
:android {:aot :all-with-unused
:rename-manifest-package "advent.core.debug"
:manifest-options {:app-name "ticks tales (debug)"}
:aot-exclude-ns [cljs.core.async.macros cljs.core.impl-ioc-macros cljs.core.impl.ioc_macros]}}
:release {:android
{;; Specify the path to your private
;; keystore and the the alias of the
;; key you want to sign APKs with.
;; :keystore-path "/home/user/.android/private.keystore"
;; :key-alias "mykeyalias"
:aot :all
:aot-exclude-ns [cljs.core.async.macros cljs.core.impl-ioc-macros cljs.core.impl.ioc_macros]}}}
:android {;; Specify the path to the Android SDK directory either
;; here or in your ~/.lein/profiles.clj file.
:sdk-path "/usr/local/Cellar/android-sdk/24.3.4/"
;; Uncomment this if dexer fails with OutOfMemoryException
#_#_:force-dex-optimize true
:assets-paths ["/Users/brycecovert/dev/advent/desktop/resources"]
:native-libraries-paths ["libs"]
:target-version "15" ; 18+
:aot-exclude-ns ["clojure.parallel" "clojure.core.reducers"
"cider.nrepl" "cider-nrepl.plugin"
"cider.nrepl.middleware.util.java.parser"
#"cljs-tooling\..+" "cljs.core.async.macros"
"cljs.core.async.impl.ioc-macros"
"cljs.core.impl.ioc_macros"
#"com.badlogic.gdx.physics\..+"]
:multi-dex true
:multi-dex-proguard-conf-path "proguard-multi-dex.cfg"
:dex-opts ["-JXmx8192M" "--no-locals"]}
:source-paths ["src/clojure" "../desktop/src-common"]
:java-source-paths ["src/java" "gen" ]
:javac-options ["-target" "1.6" "-source" "1.6" "-Xlint:-options"])