Skip to content

Commit

Permalink
Merge pull request element-hq#7749 from vector-im/dependabot/gradle/c…
Browse files Browse the repository at this point in the history
…om.google.firebase-firebase-messaging-23.1.1

Bump firebase-messaging from 23.1.0 to 23.1.1
  • Loading branch information
mnaturel authored Jan 4, 2023
2 parents 87928b4 + 12ccf13 commit e396f6c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ def gradle = "7.3.1"
def kotlin = "1.7.22"
def kotlinCoroutines = "1.6.4"
def dagger = "2.44.2"
def firebaseBom = "31.1.1"
def appDistribution = "16.0.0-beta05"
def retrofit = "2.9.0"
def markwon = "4.6.2"
Expand Down Expand Up @@ -80,6 +81,8 @@ ext.libs = [
],
google : [
'material' : "com.google.android.material:material:1.7.0",
'firebaseBom' : "com.google.firebase:firebase-bom:$firebaseBom",
'messaging' : "com.google.firebase:firebase-messaging",
'appdistributionApi' : "com.google.firebase:firebase-appdistribution-api-ktx:$appDistribution",
'appdistribution' : "com.google.firebase:firebase-appdistribution:$appDistribution",
// Phone number https://github.com/google/libphonenumber
Expand Down
3 changes: 2 additions & 1 deletion vector-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,8 @@ dependencies {

gplayImplementation "com.google.android.gms:play-services-location:21.0.1"
// UnifiedPush gplay flavor only
gplayImplementation('com.google.firebase:firebase-messaging:23.1.0') {
gplayImplementation platform(libs.google.firebaseBom)
gplayImplementation(libs.google.messaging) {
exclude group: 'com.google.firebase', module: 'firebase-core'
exclude group: 'com.google.firebase', module: 'firebase-analytics'
exclude group: 'com.google.firebase', module: 'firebase-measurement-connector'
Expand Down

0 comments on commit e396f6c

Please sign in to comment.