android and ios achievements.

This commit is contained in:
Bryce Covert
2018-01-04 21:54:21 -08:00
parent c4e4a14be3
commit e95d6c4be1
24 changed files with 379 additions and 24 deletions

View File

@@ -14,34 +14,42 @@
[com.android.billingclient/billing "dp-1" :extension "aar"]
[org.clojure/tools.logging "0.3.1"]
[com.google.android.gms/play-services-games "11.6.2" :extension "aar" :exclusions [com.android.support/support-annotations]]
[com.google.android.gms/play-services-auth "11.6.2" :extension "aar" :exclusions [com.android.support/support-annotations]]
#_[com.google.android.gms/play-services "11.6.2" :extension "aar" :exclusions [com.android.support/support-annotations]]
[org.clojure/tools.logging "0.3.1" :exclusions [org.clojure/clojure]]
[org.clojure-android/clojure "1.7.0-r4"]
[org.im4java/im4java "1.4.0"]
[org.clojure/tools.nrepl "0.2.7"]
[play-clj "0.4.6-BRYCE"]
[play-clj "0.4.6-BRYCE" :exclusions [org.clojure/clojure]]
[org.clojure/data.priority-map "0.0.5"]
[org.clojure/core.async "0.2.371"]]
:plugins [[lein-droid "0.4.6"]]
:repositories [["jCenter" "https://jcenter.bintray.com/"]]
[org.clojure/core.async "0.2.371" :exclusions [org.clojure/clojure]]]
:plugins [[lein-droid "0.4.6" :exclusions [org.clojure/clojure] ]]
:repositories [["jCenter" "https://jcenter.bintray.com/"]
["google" "https://maven.google.com"]]
:profiles {:dev {:dependencies [[android/tools.nrepl "0.2.0-bigstack"]
[compliment "0.1.3"]]
[compliment "0.1.3"]
[org.clojure/tools.nrepl "0.2.7" :exclusions [org.clojure/clojure]]]
:jvm-opts ["-Dplatform=android"]
:android {:aot :all-with-unused
:rename-manifest-package "tickstales.core.debug"
:manifest-options {:app-name "ticks tales (debug)"}
:aot-exclude-ns ["clojure.core.memoize" "core.async"]}}
:release {:android
:release {
:jvm-opts ["-Dplatform=android"]
:android
{;; Specify the path to your private
;; keystore and the the alias of the
;; key you want to sign APKs with.
;; :keystore-path "ticks-talkes-release.jks"
;; :key-alias "ticks-tales-release"
:jvm-opts ["-Dplatform=android"]
:build-type :release
:aot :all-with-unused
:aot-exclude-ns [cljs.core.async.macros cljs.core.impl-ioc-macros cljs.core.impl.ioc_macros]}}}