1- import com.android.build.gradle.internal.cxx.configure.gradleLocalProperties
21import org.apache.tools.ant.taskdefs.condition.Os
32import org.gradle.api.tasks.testing.logging.TestExceptionFormat
43import org.gradle.api.tasks.testing.logging.TestLogEvent
@@ -26,15 +25,6 @@ buildscript {
2625val targetSdkVersion by extra(30 )
2726val minSdkVersion by extra(16 )
2827
29- // TODO: Hierarchical project structures are not fully supported in IDEA, enable only for a regular built (https://youtrack.jetbrains.com/issue/KT-35011)
30- // add idea.active=true for local development
31- val _ideaActive = gradleLocalProperties(rootDir)[" idea.active" ] == " true"
32-
33- // if (!_ideaActive) {
34- // ext["kotlin.mpp.enableGranularSourceSetsMetadata"] = "true"
35- // ext["kotlin.native.enableDependencyPropagation"] = "false"
36- // }
37-
3828tasks {
3929 val updateVersions by registering {
4030 dependsOn(
@@ -51,8 +41,6 @@ tasks {
5141
5242subprojects {
5343
54- val ideaActive by extra(_ideaActive )
55-
5644 group = " dev.gitlive"
5745
5846 apply (plugin= " com.adarshr.test-logger" )
@@ -207,12 +195,12 @@ subprojects {
207195 }
208196
209197 dependencies {
210- " commonMainImplementation" (" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.1 " )
211- " androidMainImplementation" (" org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.5.1 " )
198+ " commonMainImplementation" (" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2 " )
199+ " androidMainImplementation" (" org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.5.2 " )
212200 " androidMainImplementation" (platform(" com.google.firebase:firebase-bom:28.4.0" ))
213201 " commonTestImplementation" (kotlin(" test-common" ))
214202 " commonTestImplementation" (kotlin(" test-annotations-common" ))
215- " commonTestImplementation" (" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.1 " )
203+ " commonTestImplementation" (" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2 " )
216204 " jsTestImplementation" (kotlin(" test-js" ))
217205 " androidAndroidTestImplementation" (kotlin(" test-junit" ))
218206 " androidAndroidTestImplementation" (" junit:junit:4.13.2" )
0 commit comments