Advertisement
kjromero

Untitled

May 5th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.70 KB | None | 0 0
  1. buildscript {
  2. repositories {
  3. maven { url "http://dl.bintray.com/populov/maven" }
  4. mavenCentral()
  5. maven { url 'https://maven.fabric.io/public' }
  6. }
  7.  
  8. dependencies {
  9. classpath 'io.fabric.tools:gradle:1.+'
  10. }
  11. }
  12. apply plugin: 'com.android.application'
  13. apply plugin: 'io.fabric'
  14.  
  15. repositories {
  16. maven { url "http://dl.bintray.com/populov/maven" }
  17. mavenCentral()
  18. maven { url 'https://maven.fabric.io/public' }
  19. }
  20.  
  21. android {
  22. compileSdkVersion 'Google Inc.:Google APIs:21'
  23. buildToolsVersion '22.0.1'
  24.  
  25. defaultConfig {
  26. applicationId "org.inaturalist.android"
  27. minSdkVersion 10
  28. targetSdkVersion 21
  29. multiDexEnabled true
  30. renderscriptTargetApi 18
  31. renderscriptSupportModeEnabled true
  32. }
  33.  
  34. buildTypes {
  35. release {
  36. minifyEnabled false
  37. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
  38. }
  39. }
  40.  
  41. packagingOptions {
  42. exclude 'META-INF/DEPENDENCIES'
  43. exclude 'META-INF/NOTICE'
  44. exclude 'META-INF/LICENSE'
  45. exclude 'META-INF/LICENSE.txt'
  46. exclude 'META-INF/NOTICE.txt'
  47. }
  48. }
  49.  
  50. dependencies {
  51. compile 'com.android.support:multidex:1.0.0'
  52. compile project(':library')
  53. compile project(':androidswitchbackport')
  54. compile project(':urlImageViewHelper')
  55. compile fileTree(include: ['*.jar'], dir: 'libs')
  56. //compile 'com.android.support:appcompat-v7:21.+'
  57. compile files('libs/FlurryAnalytics-4.2.0.jar')
  58. compile('com.crashlytics.sdk.android:crashlytics:2.4.0@aar') {
  59. transitive = true;
  60. }
  61. compile 'com.android.support:support-v4:22.1.1'
  62. compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'
  63. compile 'com.google.android.gms:play-services:7.3.0'
  64. compile 'org.apache.commons:commons-collections4:4.0'
  65. compile 'org.apache.commons:commons-lang3:3.1'
  66. compile 'org.apache.httpcomponents:httpmime:4.3.3'
  67. compile 'org.apache.httpcomponents:httpcore:4.4.1'
  68. compile 'com.facebook.android:facebook-android-sdk:4.1.0'
  69. compile 'com.loopj.android:android-async-http:1.4.7'
  70. compile 'com.melnykov:floatingactionbutton:1.3.0'
  71. compile 'org.apache.sanselan:sanselan:0.97-incubator'
  72. compile 'com.cocosw:bottomsheet:1.+@aar'
  73. compile 'org.lucasr.twowayview:twowayview:0.1.4'
  74. compile 'com.viewpagerindicator:library:2.4.1'
  75. compile 'joda-time:joda-time:2.4'
  76. compile 'com.google.android.gms:play-services-ads:7.3.0'
  77. compile 'com.google.android.gms:play-services-identity:7.3.0'
  78. compile 'com.google.android.gms:play-services-gcm:7.3.0'
  79. // compile 'uk.co.chrisjenx:calligraphy:2.2.0'
  80. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement