supporting android

This commit is contained in:
Bryce Covert
2020-01-11 21:43:48 -08:00
parent 9429aa30f3
commit e6c46cc8fa
10 changed files with 11 additions and 5 deletions

View File

@@ -1,12 +1,10 @@
(def version (str "2.0." (clojure.string/trim-newline (slurp "../desktop/last-release")) "-snapshot"))
(defproject advent.core version
(defproject tickstales.core version
:description "FIXME: write description"
:manifest {"Implementation-Version" version}
:dependencies [[com.badlogicgames.gdx/gdx "1.9.4" :use-resources true]
[com.badlogicgames.gdx/gdx-backend-lwjgl "1.9.4"]
[com.badlogicgames.gdx/gdx-box2d "1.9.4"]
[com.badlogicgames.gdx/gdx-tools "1.9.4"]
[com.badlogicgames.gdx/gdx-backend-android "1.9.4"]
[neko/neko "4.0.0-alpha5"]
@@ -39,7 +37,7 @@
:jvm-opts ["-Dplatform=android"]
:android {:aot :all-with-unused
:rename-manifest-package "advent.core.debug"
:rename-manifest-package "tickstales.core.debug"
:manifest-options {:app-name "ticks tales (debug)"}
:aot-exclude-ns ["clojure.core.memoize" "core.async"]}}
:release {
@@ -50,7 +48,7 @@
;; key you want to sign APKs with.
:keystore-path "debug.keystore"
:key-alias "androiddebugkey"
:rename-manifest-package "advent.core"
:rename-manifest-package "tickstales.core"
:build-type :release
:aot :all-with-unused