blob: 507da8367a29d811fa54e0dcd3f9ecd160d0b332 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
(defproject carddav-sync/carddav-sync "0.0.1-SNAPSHOT"
:description "FIXME: Android project description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:min-lein-version "2.0.0"
:warn-on-reflection true
:source-paths ["src/clojure" "src"]
:java-source-paths ["src/java" "gen"]
:dependencies [[org.clojure-android/clojure "1.5.1-SNAPSHOT"]
[neko/neko "3.0.0-beta5"]]
:profiles {:dev {:dependencies [[android/tools.nrepl "0.2.0-bigstack"]
[org.clojure-android/clojure-complete "0.3.0-SNAPSHOT"]]
:android {:aot :all-with-unused}}
:release {:android
{;; Specify the path to your private keystore
;; and the the alias of the key you want to
;; sign APKs with. Do it either here or in
;; ~/.lein/profiles.clj
;; :keystore-path "/home/user/.android/private.keystore"
;; :key-alias "mykeyalias"
:aot :all}}}
:android {;; Specify the path to the Android SDK directory either
;; here or in your ~/.lein/profiles.clj file.
;; :sdk-path "/home/user/path/to/android-sdk/"
;; Uncomment this if dexer fails with
;; OutOfMemoryException. Set the value according to your
;; available RAM.
;; :dex-opts ["-JXmx4096M"]
;; If previous option didn't work, uncomment this as well.
;; :force-dex-optimize true
:target-version "18"
:aot-exclude-ns ["clojure.parallel" "clojure.core.reducers"]})
|