1
- import com.android.build.gradle.internal.cxx.configure.gradleLocalProperties
2
1
import org.apache.tools.ant.taskdefs.condition.Os
3
2
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
4
3
import org.gradle.api.tasks.testing.logging.TestLogEvent
@@ -26,15 +25,6 @@ buildscript {
26
25
val targetSdkVersion by extra(30 )
27
26
val minSdkVersion by extra(16 )
28
27
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
-
38
28
tasks {
39
29
val updateVersions by registering {
40
30
dependsOn(
@@ -51,8 +41,6 @@ tasks {
51
41
52
42
subprojects {
53
43
54
- val ideaActive by extra(_ideaActive )
55
-
56
44
group = " dev.gitlive"
57
45
58
46
apply (plugin= " com.adarshr.test-logger" )
@@ -207,12 +195,12 @@ subprojects {
207
195
}
208
196
209
197
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 " )
212
200
" androidMainImplementation" (platform(" com.google.firebase:firebase-bom:28.4.0" ))
213
201
" commonTestImplementation" (kotlin(" test-common" ))
214
202
" 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 " )
216
204
" jsTestImplementation" (kotlin(" test-js" ))
217
205
" androidAndroidTestImplementation" (kotlin(" test-junit" ))
218
206
" androidAndroidTestImplementation" (" junit:junit:4.13.2" )
0 commit comments