Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- buildscript {
- repositories {
- maven { url 'https://maven.fabric.io/public' }
- maven { url 'http://archiva.instabug.com/repository/release' }
- maven { url 'http://dl.bintray.com/amulyakhare/maven' }
- maven { url 'https://jcenter.bintray.com/' }
- }
- dependencies {
- classpath 'io.fabric.tools:gradle:1.+'
- }
- }
- apply plugin: 'android'
- apply plugin: 'io.fabric'
- repositories {
- maven { url 'https://maven.fabric.io/public' }
- maven { url 'http://dl.bintray.com/amulyakhare/maven' }
- maven { url 'https://jcenter.bintray.com/' }
- }
- android {
- compileSdkVersion 22
- buildToolsVersion '22.0.1'
- defaultConfig {
- minSdkVersion 16
- targetSdkVersion 22
- versionCode 301
- versionName '1.5.0'
- multiDexEnabled true
- }
- dexOptions {
- preDexLibraries = false
- javaMaxHeapSize "4g"
- }
- packagingOptions {
- exclude 'META-INF/services/javax.annotation.processing.Processor'
- }
- buildTypes {
- release {
- ext.enableCrashlytics=true
- ext.betaDistributionReleaseNotesFilePath="/Users/gopublic/bamboo-home/xml-data/build-dir/131073/PAS-PAD-VRANDROID/changelog.txt"
- ext.betaDistributionGroupAliases="passenger-android-beta"
- }
- debug{
- ext.enableCrashlytics=true
- ext.betaDistributionReleaseNotesFilePath="/Users/gopublic/bamboo-home/xml-data/build-dir/131073/PAS-PAD-VRANDROID/changelog.txt"
- ext.betaDistributionGroupAliases="passenger-android-beta"
- }
- }
- }
- dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
- compile 'com.android.support:appcompat-v7:22.+'
- compile 'com.android.support:multidex:1.0.0'
- compile 'com.google.code.gson:gson:2+'
- compile 'com.android.support:cardview-v7:22.0.+'
- compile 'com.android.support:recyclerview-v7:22.0.+'
- compile 'com.mcxiaoke.volley:library:1.0.+'
- compile 'com.jakewharton:butterknife:4.0.+'
- compile 'com.squareup.okhttp:okhttp:2.0.0+'
- compile 'com.google.android.gms:play-services:+'
- compile 'com.github.chrisbanes.actionbarpulltorefresh:library:+'
- compile 'com.tonicartos:stickygridheaders:1.0.1@jar'
- compile 'com.prolificinteractive:parallaxpager:0.8.0'
- compile files('libs/nineoldandroids-2.4.0.jar')
- compile files('libs/gcm.jar')
- compile files('libs/okhttp-urlconnection-2.0.0.jar')
- compile project(':libraries:facebook')
- compile 'com.edmodo:cropper:1.0.1'
- compile 'com.squareup.picasso:picasso:2.3.3'
- compile 'com.makeramen:roundedimageview:1.3.0'
- compile 'com.androidplot:androidplot-core:0.6.1'
- compile 'com.google.maps.android:android-maps-utils:0.3+'
- compile 'com.instabug.library:instabugsupport:1+'
- compile 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
- compile 'io.realm:realm-android:0.80.+'
- compile('com.crashlytics.sdk.android:crashlytics:2.5.1@aar') {
- transitive = true;
- }
- compile files('libs/easyandroidanimationslibrary-v0.5.jar')
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement