Advertisement
Guest User

at.mkw.inlocs.android.lib

a guest
Apr 1st, 2014
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.83 KB | None | 0 0
  1. apply plugin: 'android-library'
  2.  
  3. android {
  4.     compileSdkVersion smartbowSdkVersion
  5.     buildToolsVersion smartbowBuildToolsVersion
  6.    
  7.     productFlavors {
  8.         cow {
  9.         }
  10.  
  11.         pig {
  12.         }
  13.     }
  14. }
  15.  
  16. dependencies {
  17.     compile "com.nineoldandroids:library:2.4.0"
  18.     compile "com.github.japgolly.android:svg-android:2.0.5"
  19.     compile "org.achartengine:achartengine:1.1.0"
  20.     compile "com.googlecode.json-simple:json-simple:1.1.1"
  21.     compile "at.mkw.inlocs.mkwe.commons:animal:+"
  22.     compile "at.mkw.inlocs.mkwe.commons:animalgroup:+"
  23.     compile "at.mkw.inlocs.mkwe.commons:area:+"
  24.     compile "at.mkw.inlocs.mkwe.commons:breeding:+"
  25.     compile "at.mkw.inlocs.mkwe.commons:health:+"
  26.     cowCompile project(path: ':at.mkw.inlocs.android', configuration: 'cowRelease')
  27.     pigCompile project(path: ':at.mkw.inlocs.android', configuration: 'pigRelease')
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement