Skip to content

Commit

Permalink
MBX-3143: update fcm version
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Sozinov committed Feb 22, 2024
1 parent 408a07e commit 21fcdea
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ ext {
kotlin_stdlib: 'org.jetbrains.kotlin:kotlin-stdlib:1.4.20',
androidx_core_ktx: 'androidx.core:core-ktx:1.7.0',
androidx_annotations: 'androidx.annotation:annotation:1.3.0',
firebase_bom: 'com.google.firebase:firebase-bom:26.1.1',
firebase_messaging: 'com.google.firebase:firebase-messaging:21.0.0',
firebase_bom: 'com.google.firebase:firebase-bom:32.7.2',
firebase_messaging: 'com.google.firebase:firebase-messaging',
gms_play_services_basement: 'com.google.android.gms:play-services-basement:18.0.0',
gms_play_services_base: 'com.google.android.gms:play-services-base:18.0.1',
gms_play_services_ads_identifier: 'com.google.android.gms:play-services-ads-identifier:18.0.1',
Expand Down
8 changes: 7 additions & 1 deletion example/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,13 @@ android {
buildConfig = true
}
}

// If the version of firebase-bom used in the sdk is higher, then it will be applied
// To change the dependency resolution strategy use the code below
/* configurations.configureEach {
resolutionStrategy {
force 'com.google.firebase:firebase-bom:32.7.1'
}
} */
dependencies {

implementation 'androidx.core:core-ktx:1.12.0'
Expand Down

0 comments on commit 21fcdea

Please sign in to comment.