Skip to content

Commit f82bb79

Browse files
committed
fix issue
1 parent 5a905ca commit f82bb79

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

firebase-common/firebase-common.gradle.kts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,10 @@ dependencies {
7979
testImplementation(libs.robolectric)
8080
testImplementation(libs.truth)
8181

82-
androidTestImplementation(project(":integ-testing"))
82+
androidTestImplementation(project(":integ-testing")) {
83+
exclude("com.google.firebase","firebase-common")
84+
exclude("com.google.firebase","firebase-common-ktx")
85+
}
8386
androidTestImplementation(libs.androidx.test.junit)
8487
androidTestImplementation(libs.androidx.test.runner)
8588
androidTestImplementation(libs.junit)

integ-testing/integ-testing.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ android {
3636
}
3737

3838
dependencies {
39-
implementation(project(":firebase-common"))
40-
implementation(project(":firebase-common:ktx"))
41-
implementation(project(":firebase-components"))
39+
implementation("com.google.firebase:firebase-common-ktx:20.4.0")
40+
implementation("com.google.firebase:firebase-common:20.4.0")
41+
implementation("com.google.firebase:firebase-components:17.1.3")
4242
implementation(libs.androidx.test.runner)
4343
implementation(libs.junit)
4444
implementation(libs.kotlin.coroutines.test)

0 commit comments

Comments
 (0)