yshrsmz
12/16/2019, 10:43 AMkotlin.mpp.enableGranularSourceSetsMetadata=true
, Some expect/actual definition does not resolve its type correctly in commonMain and android app module.
When I set kotlin.mpp.enableGranularSourceSetsMetadata=false
, androidMain does not resolve android classes
My app was working fine when I used 1.3.50.russhwolf
12/17/2019, 2:46 AMyshrsmz
12/17/2019, 7:52 AMkotlin {
android()
iosX64()
sourceSets {
androidMain {
dependsOn commonMain
}
androidTest {
dependsOn androidMain
}
}
}
After removing these dependsOn
, now it seems to be resolving fine.
Thanks @russhwolf !