completely remove firebase, mqtt and google services from build

This commit is contained in:
Conny Duck 2017-10-19 14:39:56 +02:00
commit 2859a5075c
5 changed files with 7 additions and 334 deletions

View file

@ -36,9 +36,6 @@ android {
ext.supportLibraryVersion = '26.1.0'
dependencies {
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile('com.mikepenz:materialdrawer:5.9.5@aar') {
transitive = true
}
@ -59,15 +56,14 @@ dependencies {
compile "com.mikepenz:google-material-typeface:3.0.1.0.original@aar"
compile "com.theartofdev.edmodo:android-image-cropper:2.5.1"
compile "org.jsoup:jsoup:1.10.3"
compile "org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.1.1"
compile("org.eclipse.paho:org.eclipse.paho.android.service:1.1.1") {
exclude module: "support-v4"
}
testCompile "junit:junit:4.12"
//room
compile "android.arch.persistence.room:runtime:1.0.0-beta2"
annotationProcessor 'android.arch.persistence.room:compiler:1.0.0-beta2'
googleCompile 'com.google.firebase:firebase-crash:11.0.4'
}
apply plugin: 'com.google.gms.google-services'
testCompile "junit:junit:4.12"
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
}