File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -93,13 +93,12 @@ kotlin {
9393 sourceSets.all {
9494 val suffixIndex = name.indexOfLast { it.isUpperCase() }
9595 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" }
9797// println("SOURCE_SET: $name")
9898 kotlin.srcDir(" $targetName /${suffix ? : " src" } " )
9999 resources.srcDir(" $targetName /${suffix?.let { it + " Resources" } ? : " resources" } " )
100100 languageSettings {
101101 // progressiveMode = true
102- optIn(" kotlin.Experimental" )
103102 }
104103 }
105104
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ java.mainToolchainVersion=8
1313java.modularToolchainVersion =11
1414
1515kotlin.mpp.stability.nowarn =true
16- kotlin.mpp.enableGranularSourceSetsMetadata =true
1716kotlin.mpp.enableCompatibilityMetadataVariant =true
1817kotlin.js.compiler =both
1918kotlin.native.ignoreIncorrectDependencies =true
You can’t perform that action at this time.
0 commit comments