File tree 2 files changed +1
-3
lines changed 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -93,13 +93,12 @@ kotlin {
93
93
sourceSets.all {
94
94
val suffixIndex = name.indexOfLast { it.isUpperCase() }
95
95
val targetName = name.substring(0 , suffixIndex)
96
- val suffix = name.substring(suffixIndex).toLowerCase( Locale . ROOT ).takeIf { it != " main" }
96
+ val suffix = name.substring(suffixIndex).lowercase( ).takeIf { it != " main" }
97
97
// println("SOURCE_SET: $name")
98
98
kotlin.srcDir(" $targetName /${suffix ? : " src" } " )
99
99
resources.srcDir(" $targetName /${suffix?.let { it + " Resources" } ? : " resources" } " )
100
100
languageSettings {
101
101
// progressiveMode = true
102
- optIn(" kotlin.Experimental" )
103
102
}
104
103
}
105
104
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ java.mainToolchainVersion=8
13
13
java.modularToolchainVersion =11
14
14
15
15
kotlin.mpp.stability.nowarn =true
16
- kotlin.mpp.enableGranularSourceSetsMetadata =true
17
16
kotlin.mpp.enableCompatibilityMetadataVariant =true
18
17
kotlin.js.compiler =both
19
18
kotlin.native.ignoreIncorrectDependencies =true
You can’t perform that action at this time.
0 commit comments