Skip to content

Instantly share code, notes, and snippets.

Created July 28, 2016 12:08
Show Gist options
  • Save anonymous/1f329a7e0dc2486bd63a5300e678cb33 to your computer and use it in GitHub Desktop.
Save anonymous/1f329a7e0dc2486bd63a5300e678cb33 to your computer and use it in GitHub Desktop.
apply plugin: 'com.android.application'
apply plugin: 'android-apt'
android {
compileSdkVersion 24
buildToolsVersion "24.0.0"
defaultConfig {
applicationId "mvp.maid.com.samplemvp"
minSdkVersion 19
targetSdkVersion 24
versionCode 1
versionName "1.0"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
repositories {
maven {
url "https://jitpack.io"
}
}
packagingOptions {
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE-FIREBASE.txt'
exclude 'META-INF/NOTICE'
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:24.1.1'
compile 'com.android.support:support-v4:24.+'
compile 'com.android.support:design:24.+'
compile 'com.android.support:support-v13:+'
compile 'com.android.support:design:24.0.0'
compile('com.github.ganfra:material-spinner:1.1.0') {
exclude group: 'com.nineoldandroids', module: 'library'
exclude group: 'com.android.support', module: 'appcompat-v7'
}
testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:1.10.19'
apt 'com.jakewharton:butterknife-compiler:8.0.1'
compile 'com.jakewharton:butterknife:8.0.1'
compile 'com.rengwuxian.materialedittext:library:2.1.4'
compile 'com.google.irebase:firebase-core:9.2.1'
compile 'com.firebase:firebase-client-android:2.5.2+'
// Single target that includes all FirebaseUI libraries
compile 'com.firebaseui:firebase-ui:0.4.3'
compile 'com.google.android.gms:play-services:9.2.1'
compile 'com.google.android.gms:play-services-auth:9.2.1'
compile 'com.android.support:multidex:1.0.1'
}
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