ppamorim

Untitled

Oct 20th, 2014
318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. buildscript {
  2. repositories {
  3. maven { url 'http://download.crashlytics.com/maven' }
  4. }
  5.  
  6. dependencies {
  7. classpath 'com.crashlytics.tools.gradle:crashlytics-gradle:1.+'
  8. }
  9. }
  10. apply plugin: 'android'
  11. apply plugin: 'crashlytics'
  12.  
  13. repositories {
  14. maven { url 'http://download.crashlytics.com/maven' }
  15. }
  16.  
  17.  
  18. android {
  19. compileSdkVersion 21
  20. buildToolsVersion '21.0.1'
  21. useOldManifestMerger true
  22.  
  23. defaultConfig {
  24. minSdkVersion 14
  25. targetSdkVersion 21
  26. versionCode 4
  27. versionName "1.04"
  28. }
  29.  
  30. buildTypes {
  31.  
  32. release {
  33. runProguard false
  34. proguardFiles 'proguard-rules.pro'
  35. }
  36. }
  37.  
  38. packagingOptions {
  39. exclude 'META-INF/DEPENDENCIES.txt'
  40. exclude 'META-INF/LICENSE.txt'
  41. exclude 'META-INF/NOTICE.txt'
  42. exclude 'META-INF/NOTICE'
  43. exclude 'META-INF/LICENSE'
  44. exclude 'META-INF/DEPENDENCIES'
  45. exclude 'META-INF/notice.txt'
  46. exclude 'META-INF/license.txt'
  47. exclude 'META-INF/dependencies.txt'
  48. exclude 'META-INF/LGPL2.1'
  49. }
  50.  
  51. }
  52.  
  53. dependencies {
  54. compile fileTree(dir: 'libs', include: '*.jar')
  55. compile project(':libraries:facebook')
  56. compile 'commons-codec:commons-codec:1.9'
  57. compile 'com.google.android.gms:play-services:6.1.11'
  58. compile 'com.github.leonardoxh:custom-font:+'
  59. compile 'com.nineoldandroids:library:2.4.0'
  60. compile 'com.mobsandgeeks:android-saripaar:1.0.3'
  61. compile 'com.android.support:appcompat-v7:+'
  62. compile 'com.fasterxml.jackson.core:jackson-annotations:2.4.2'
  63. compile 'com.fasterxml.jackson.core:jackson-core:2.4.2'
  64. compile 'com.fasterxml.jackson.core:jackson-databind:2.4.2'
  65. compile 'net.danlew:android.joda:2.3.4'
  66. compile 'com.squareup.okhttp:okhttp:2.0.0'
  67. compile 'com.squareup.okhttp:okhttp-urlconnection:2.0.0'
  68. // compile 'org.apache.httpcomponents:httpmime:4.2.5'
  69. compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.3'
  70. compile 'it.sephiroth.android.library.horizontallistview:hlistview:1.2.2'
  71. compile 'com.google.maps.android:android-maps-utils:0.3.1'
  72. compile 'com.crashlytics.android:crashlytics:1.+'
  73. compile files('src/main/libs/ActiveAndroid.jar')
  74. compile files('src/main/libs/android-async-http-1.4.4.jar')
  75. compile files('src/main/libs/libGoogleAnalyticsServices.jar')
  76. compile files('src/main/libs/jsoup-1.7.3.jar')
  77. }
Advertisement
Add Comment
Please, Sign In to add comment