Advertisement
Guest User

Untitled

a guest
Aug 14th, 2015
1,486
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 3.29 KB | None | 0 0
  1. buildscript {
  2.     repositories {
  3.         maven { url 'https://maven.fabric.io/public' }
  4.         maven { url 'http://archiva.instabug.com/repository/release' }
  5.         maven { url 'http://dl.bintray.com/amulyakhare/maven' }
  6.         maven { url 'https://jcenter.bintray.com/' }
  7.     }
  8.  
  9.     dependencies {
  10.         classpath 'io.fabric.tools:gradle:1.+'
  11.     }
  12. }
  13. apply plugin: 'android'
  14. apply plugin: 'io.fabric'
  15.  
  16. repositories {
  17.     maven { url 'https://maven.fabric.io/public' }
  18.     maven { url 'http://dl.bintray.com/amulyakhare/maven' }
  19.     maven { url 'https://jcenter.bintray.com/' }
  20. }
  21.  
  22.  
  23. android {
  24.     compileSdkVersion 22
  25.     buildToolsVersion '22.0.1'
  26.     defaultConfig {
  27.         minSdkVersion 16
  28.         targetSdkVersion 22
  29.         versionCode 301
  30.         versionName '1.5.0'
  31.         multiDexEnabled true
  32.     }
  33.     dexOptions {
  34.         preDexLibraries = false
  35.         javaMaxHeapSize "4g"
  36.     }
  37.     packagingOptions {
  38.         exclude 'META-INF/services/javax.annotation.processing.Processor'
  39.     }
  40.     buildTypes {
  41.         release {
  42.             ext.enableCrashlytics=true
  43.             ext.betaDistributionReleaseNotesFilePath="/Users/gopublic/bamboo-home/xml-data/build-dir/131073/PAS-PAD-VRANDROID/changelog.txt"
  44.             ext.betaDistributionEmails="alin.rosu@100grams.nl, pedro.amanhui@100grams.nl, 100gramstest@gmail.com"
  45.             ext.betaDistributionGroupAliases="passenger-android-beta"
  46.  
  47.         }
  48.  
  49.         debug{
  50.             ext.enableCrashlytics=true
  51.             ext.betaDistributionEmails="alin.rosu@100grams.nl, pedro.amanhui@100grams.nl, 100gramstest@gmail.com"
  52.             ext.betaDistributionReleaseNotesFilePath="/Users/gopublic/bamboo-home/xml-data/build-dir/131073/PAS-PAD-VRANDROID/changelog.txt"
  53.             ext.betaDistributionGroupAliases="passenger-android-beta"
  54.  
  55.         }
  56.     }
  57. }
  58.  
  59. dependencies {
  60.     compile fileTree(dir: 'libs', include: ['*.jar'])
  61.     compile 'com.android.support:appcompat-v7:22.+'
  62.     compile 'com.android.support:multidex:1.0.0'
  63.     compile 'com.google.code.gson:gson:2+'
  64.     compile 'com.android.support:cardview-v7:22.0.+'
  65.     compile 'com.android.support:recyclerview-v7:22.0.+'
  66.     compile 'com.mcxiaoke.volley:library:1.0.+'
  67.     compile 'com.jakewharton:butterknife:4.0.+'
  68.     compile 'com.squareup.okhttp:okhttp:2.0.0+'
  69.     compile 'com.google.android.gms:play-services:+'
  70.     compile 'com.github.chrisbanes.actionbarpulltorefresh:library:+'
  71.     compile 'com.tonicartos:stickygridheaders:1.0.1@jar'
  72.     compile 'com.prolificinteractive:parallaxpager:0.8.0'
  73.     compile files('libs/nineoldandroids-2.4.0.jar')
  74.     compile files('libs/gcm.jar')
  75.     compile files('libs/okhttp-urlconnection-2.0.0.jar')
  76.     compile project(':libraries:facebook')
  77.     compile 'com.edmodo:cropper:1.0.1'
  78.     compile 'com.squareup.picasso:picasso:2.3.3'
  79.     compile 'com.makeramen:roundedimageview:1.3.0'
  80.     compile 'com.androidplot:androidplot-core:0.6.1'
  81.     compile 'com.google.maps.android:android-maps-utils:0.3+'
  82.     compile 'com.instabug.library:instabugsupport:1+'
  83.     compile 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
  84.     compile 'io.realm:realm-android:0.80.+'
  85.     compile('com.crashlytics.sdk.android:crashlytics:2.5.1@aar') {
  86.         transitive = true;
  87.     }
  88.     compile files('libs/easyandroidanimationslibrary-v0.5.jar')
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement