Guest User

project.clj

a guest
Jul 7th, 2015
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (defproject google-play-services_lib/google-play-services_lib "7.5.74-034"
  2.   ; 7.5.74-034 is the version on my phone.
  3.   ; 7.5.71-000 is the actual version I have from the SDK.
  4.   ;            There doesn't seem to be any way of getting
  5.   ;            another version. lein doesn't really seem to
  6.   ;            care what this number is.
  7.  
  8.   :description "FIXME: Android library description"
  9.   :url "http://example.com/FIXME"
  10.   :license {:name "Eclipse Public License"
  11.             :url "http://www.eclipse.org/legal/epl-v10.html"}
  12.   :min-lein-version "2.0.0"
  13.  
  14.   :source-paths ["src/clojure" "src"]
  15.   :java-source-paths ["src/java" "gen"]
  16.   :javac-options ["-target" "1.6" "-source" "1.6" "-Xlint:-options"]
  17.   :java-only true
  18.  
  19.  
  20.   :profiles {:default [:release]
  21.              :release [:android-common]}
  22.   :android {:target-version "17"
  23.             :library true
  24.             :support-libraries ["v4"]
  25.             :dependencies  [[com.google.android/support-v4 "r6"]]
  26.             }
  27. )
Advertisement
Add Comment
Please, Sign In to add comment