diff options
author | Christian Schneppe <christian@pix-art.de> | 2018-05-21 21:06:02 +0200 |
---|---|---|
committer | Christian Schneppe <christian@pix-art.de> | 2018-05-21 21:06:02 +0200 |
commit | ca89b5a8f5538095a7e5c3c38ffe5814de908385 (patch) | |
tree | f91d6e8b5b818658ad78f83e7ccac56c63cf31a3 | |
parent | 03cfa37eefe63142cf199e4537ae25857804ac6f (diff) |
exclude firebase-base from firebase-messaging
-rw-r--r-- | build.gradle | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index 5dcc91d51..7f9847d13 100644 --- a/build.gradle +++ b/build.gradle @@ -36,7 +36,9 @@ ext { dependencies { implementation project(':libs:android-transcoder') - standardPushimplementation 'com.google.firebase:firebase-messaging:15.0.2' + standardPushimplementation('com.google.firebase:firebase-messaging:15.0.2') { + exclude group: 'com.google.firebase', module: 'firebase-core' + } implementation 'org.sufficientlysecure:openpgp-api:10.0' implementation 'com.soundcloud.android:android-crop:1.0.1@aar' implementation 'org.bouncycastle:bcmail-jdk15on:1.58' |