File tree Expand file tree Collapse file tree 6 files changed +17
-2
lines changed
Expand file tree Collapse file tree 6 files changed +17
-2
lines changed Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
3740kotlin {
Original file line number Diff line number Diff 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
3841kotlin {
Original file line number Diff line number Diff 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
3437kotlin {
Original file line number Diff line number Diff 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
3235kotlin {
You can’t perform that action at this time.
0 commit comments