Skip to content

Instantly share code, notes, and snippets.

@arthtilva
Created June 15, 2017 11:23
Show Gist options
  • Save arthtilva/48d977a6192134836df5e3ab39444180 to your computer and use it in GitHub Desktop.
Save arthtilva/48d977a6192134836df5e3ab39444180 to your computer and use it in GitHub Desktop.
comman use
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}
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 {
dataBinding {
enabled = true
}
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "com"
minSdkVersion 17
targetSdkVersion 23
versionCode 5
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
configurations.all {
resolutionStrategy {
force 'com.android.support:support-v4:23.+'
force 'com.android.support:appcompat-v7:23.+'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile('com.crashlytics.sdk.android:crashlytics:2.6.8@aar') {
transitive = true;
}
compile 'com.android.support:appcompat-v7:23.2.0'
compile 'com.android.support:design:23.2.0'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.android.support:support-v4:23.2.0'
compile 'com.intuit.sdp:sdp-android:1.0.3'
compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
compile 'org.igniterealtime.smack:smack-android-extensions:4.1.4'
compile 'org.igniterealtime.smack:smack-experimental:4.1.4'
compile 'org.igniterealtime.smack:smack-tcp:4.1.4'
compile 'org.igniterealtime.smack:smack-legacy:4.1.4'
compile 'com.theartofdev.edmodo:android-image-cropper:2.3.+'
compile 'com.google.android.gms:play-services-maps:9.0.2'
compile 'net.gotev:uploadservice:3.1'
compile 'com.google.firebase:firebase-messaging:9.0.2'
}
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