Skip to content

Commit 67ebe0d

Browse files
authored
addd isAbortOnError = false to lintOptions (#65)
use corountines android instead of core on android
1 parent 55104ba commit 67ebe0d

File tree

6 files changed

+17
-2
lines changed

6 files changed

+17
-2
lines changed

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ subprojects {
175175
"commonMainImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-core-common:1.3.6")
176176
"jsMainImplementation"(kotlin("stdlib-js"))
177177
"jsMainImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-core-js:1.3.6")
178-
"androidMainImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.6")
178+
"androidMainImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.6")
179179
"androidMainImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.3.6")
180180
"iosMainImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-core-common:1.3.6")
181181
"iosMainImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-core-native:1.3.6")
@@ -187,7 +187,7 @@ subprojects {
187187
"androidAndroidTestImplementation"(kotlin("test-junit"))
188188
"androidAndroidTestImplementation"("junit:junit:4.12")
189189
"androidAndroidTestImplementation"("androidx.test:core:1.2.0")
190-
"androidAndroidTestImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.6")
190+
"androidAndroidTestImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.6")
191191
"androidAndroidTestImplementation"("androidx.test.ext:junit:1.1.1")
192192
"androidAndroidTestImplementation"("androidx.test:runner:1.1.0")
193193
}

firebase-auth/build.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ android {
4141
pickFirst("META-INF/AL2.0")
4242
pickFirst("META-INF/LGPL2.1")
4343
}
44+
lintOptions {
45+
isAbortOnError = false
46+
}
4447
}
4548

4649
// Optional configuration

firebase-common/build.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ android {
3232
pickFirst("META-INF/AL2.0")
3333
pickFirst("META-INF/LGPL2.1")
3434
}
35+
lintOptions {
36+
isAbortOnError = false
37+
}
3538
}
3639

3740
kotlin {

firebase-database/build.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ android {
3333
pickFirst("META-INF/AL2.0")
3434
pickFirst("META-INF/LGPL2.1")
3535
}
36+
lintOptions {
37+
isAbortOnError = false
38+
}
3639
}
3740

3841
kotlin {

firebase-firestore/build.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ android {
2929
pickFirst("META-INF/LGPL2.1")
3030
pickFirst("androidsupportmultidexversion.txt")
3131
}
32+
lintOptions {
33+
isAbortOnError = false
34+
}
3235
}
3336

3437
kotlin {

firebase-functions/build.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ android {
2727
pickFirst("META-INF/AL2.0")
2828
pickFirst("META-INF/LGPL2.1")
2929
}
30+
lintOptions {
31+
isAbortOnError = false
32+
}
3033
}
3134

3235
kotlin {

0 commit comments

Comments
 (0)