Skip to content

Instantly share code, notes, and snippets.

@jngnyc
Created June 27, 2017 14:48
Show Gist options
  • Save jngnyc/47c129a48d212c0ca55f2369dbbadf04 to your computer and use it in GitHub Desktop.
Save jngnyc/47c129a48d212c0ca55f2369dbbadf04 to your computer and use it in GitHub Desktop.
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public'}
maven { url 'https://artifactory.roko.mobi/artifactory/libs-release'}
}
dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
repositories {
maven { url 'https://maven.fabric.io/public' }
}
android {
compileSdkVersion 23
buildToolsVersion '25.0.0'
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId "com.twobasetechnologies.bunkup"
minSdkVersion 15
targetSdkVersion 23
versionCode 3
versionName "1.2"
//Enabling multidex support.
multiDexEnabled true
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES.txt'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/notice.txt'
exclude 'META-INF/license.txt'
exclude 'META-INF/dependencies.txt'
exclude 'META-INF/LGPL2.1'
}
dexOptions {
javaMaxHeapSize "4g" //specify the heap size for the dex process
preDexLibraries = false //delete the already predexed libraries
}
buildTypes {
/* debug {
minifyEnabled false
}*/
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
abortOnError false
}
repositories {
maven {
url "https://jitpack.io"
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.google.android.gms:play-services:9.6.1'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.2.1'
compile 'com.jakewharton:butterknife:6.1.0'
compile 'com.android.volley:volley:1.0.0'
compile 'com.facebook.android:facebook-android-sdk:4.17.0'
compile 'com.wdullaer:materialdatetimepicker:2.3.0'
compile 'de.hdodenhof:circleimageview:2.0.0'
compile 'com.eftimoff:androidplayer:1.0.3@aar'
compile 'com.nineoldandroids:library:2.4.0'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.android.support:cardview-v7:23.0.1'
compile 'com.android.support:recyclerview-v7:23.1.1'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.google.firebase:firebase-messaging:9.6.1'
compile 'com.appyvet:materialrangebar:1.3'
compile 'com.google.android.gms:play-services-analytics:9.6.1'
compile 'com.daprlabs.aaron:cardstack:0.3.1-beta0'
compile 'com.github.darsh2:MultipleImageSelect:v0.0.4'
compile 'com.github.jkwiecien:EasyImage:1.2.3'
compile 'id.zelory:compressor:1.0.2'
compile 'org.adw.library:discrete-seekbar:1.0.1'
compile 'com.github.whinc:ratingbar:1.1.1'
compile 'in.srain.cube:grid-view-with-header-footer:1.0.12'
compile project(':supernova-emoji-library')
compile 'org.apache.commons:commons-lang3:3.1'
compile 'me.relex:circleindicator:1.2.1@aar'
compile 'com.android.support:multidex:1.0.1'
compile 'de.greenrobot:eventbus:2.2.+'
compile('com.crashlytics.sdk.android:crashlytics:2.6.5@aar') {
transitive = true;
}
compile files('libs/httpmime-4.3.5.jar')
compile files('libs/httpcore-4.3.2.jar')
compile 'com.rokolabs:rokomobi-android-sdk:1.12+@aar'
compile 'com.google.code.gson:gson:2.7'
}
apply plugin: 'com.google.gms.google-services'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment