Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f57f6cb

Browse files
committedMar 8, 2022
fix firebase dependency issue
1 parent 4276998 commit f57f6cb

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed
 

‎README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ Add Firebase device mode support to your applications via this plugin for [Analy
77
To install the Segment-Firebase integration, simply add this line to your gradle file:
88

99
```
10-
implementation 'com.segment.analytics.kotlin.destinations:firebase:1.4.4'
10+
implementation 'com.segment.analytics.kotlin.destinations:firebase:<latest_version>'
1111
```
1212

1313
Or the following for Kotlin DSL
1414

1515
```
16-
implementation("com.segment.analytics.kotlin.destinations:firebase:1.4.4")
16+
implementation("com.segment.analytics.kotlin.destinations:firebase:<latest_version>")
1717
```
1818

1919

‎lib/build.gradle.kts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,7 @@ dependencies {
5656

5757
// Partner Dependencies
5858
dependencies {
59-
implementation(platform("com.google.firebase:firebase-bom:28.2.1"))
60-
implementation("com.google.firebase:firebase-analytics-ktx")
59+
implementation("com.google.firebase:firebase-analytics-ktx:20.1.0")
6160
}
6261

6362
// Test Dependencies

0 commit comments

Comments
 (0)
Please sign in to comment.