Guest User

Application build:gradle

a guest
Oct 4th, 2014
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'com.neenbedankt.android-apt'
  3.  
  4.  
  5. android {
  6. compileSdkVersion 20
  7. buildToolsVersion '20.0.0'
  8.  
  9. defaultConfig {
  10. applicationId "com.ithurts.robertharkai.baseproject"
  11. minSdkVersion 15
  12. targetSdkVersion 18
  13. versionCode 1
  14. versionName "1.0"
  15. }
  16. buildTypes {
  17. release {
  18. runProguard false
  19. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  20. }
  21. }
  22. compileOptions {
  23. sourceCompatibility JavaVersion.VERSION_1_6
  24. targetCompatibility JavaVersion.VERSION_1_6
  25. }
  26. }
  27.  
  28. dependencies {
  29. compile project(':realm')
  30. compile files('libs/jreddit.jar')
  31. compile files('libs/httpclientandroidlib-1.2.1.jar')
  32. compile 'com.squareup:otto:1.3.5'
  33. compile 'com.squareup.picasso:picasso:2.3.4'
  34. compile 'uk.co.chrisjenx:calligraphy:1.1.+'
  35. compile('de.keyboardsurfer.android.widget:crouton:1.8.4') {
  36. // exclusion is not neccessary, but generally a good idea.
  37. exclude group: 'com.google.android', module: 'support-v4'
  38. }
  39. compile 'com.nineoldandroids:library:2.4.0'
  40. compile 'com.daimajia.easing:library:1.0.0@aar'
  41. compile 'com.daimajia.androidanimations:library:1.1.2@aar'
  42. }
Advertisement
Add Comment
Please, Sign In to add comment