Revert "Rollback firebase to 12.0.1"

This reverts commit d6dfe28336.

Firebase 12 has something incompatible with gradle-3.7 (missing mandatory Manifest-Version attribute)
This commit is contained in:
Simon Morlat 2018-05-11 11:43:02 +02:00
parent 5058890443
commit ef0b58db16
2 changed files with 2 additions and 2 deletions

View file

@ -45,7 +45,7 @@ dependencies {
androidTestImplementation 'junit:junit:4.12' androidTestImplementation 'junit:junit:4.12'
implementation 'org.apache.commons:commons-compress:1.16.1' implementation 'org.apache.commons:commons-compress:1.16.1'
if (firebaseEnable()) { if (firebaseEnable()) {
implementation 'com.google.firebase:firebase-messaging:12.0.1' implementation 'com.google.firebase:firebase-messaging:15.0.2'
} }
implementation 'com.android.support:support-v4:26.0.1' implementation 'com.android.support:support-v4:26.0.1'
} }

View file

@ -35,7 +35,7 @@ apply plugin: 'com.android.library'
dependencies { dependencies {
implementation group: 'org.apache.commons', name: 'commons-compress', version: '1.16.1' implementation group: 'org.apache.commons', name: 'commons-compress', version: '1.16.1'
if (firebaseEnable()) { if (firebaseEnable()) {
implementation 'com.google.firebase:firebase-messaging:12.0.1' implementation 'com.google.firebase:firebase-messaging:15.0.2'
} else { } else {
implementation 'com.android.support:support-v4:26.0.1' implementation 'com.android.support:support-v4:26.0.1'
} }