Skip to content

Commit

Permalink
upgrade libs
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmad Idrees committed Jul 27, 2022
1 parent 97574bf commit 9c2dba7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ fcm.initializeFCM("/topics/$packageName")

### For FireBase Analytics, create an object FirebaseAnalytics, passing context init :
```kotlin
private val fbAnalytics by lazy { FirebaseAnalytics(this) }
val fbAnalytics = FirebaseAnalytics(this)
```
Send eventName & eventStatus init:

Expand Down
10 changes: 5 additions & 5 deletions firebaseLib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ dependencies {
implementation 'androidx.core:core-ktx:1.8.0'

//Firebase BOM
api platform('com.google.firebase:firebase-bom:30.2.0')
implementation 'com.google.firebase:firebase-config-ktx'
implementation 'com.google.firebase:firebase-analytics-ktx'
implementation 'com.google.firebase:firebase-messaging-ktx'
implementation 'com.google.firebase:firebase-crashlytics-ktx'
api platform('com.google.firebase:firebase-bom:30.3.1')
api 'com.google.firebase:firebase-config-ktx'
api 'com.google.firebase:firebase-analytics-ktx'
api 'com.google.firebase:firebase-messaging-ktx'
api 'com.google.firebase:firebase-crashlytics-ktx'
//GSON
api 'com.google.code.gson:gson:2.9.0'
//Picasso For RemoteViews
Expand Down

0 comments on commit 9c2dba7

Please sign in to comment.