Hi, i'm trying to setup a simple (android/iOS) sce...
# multiplatform
d
Hi, i'm trying to setup a simple (android/iOS) scenario with a mp subproject (app -> shared -> core). I'm importing core into shared like this
Copy code
kotlin {
    android()
    ios {
        ...
    }

    sourceSets {
        val commonMain by getting{
            dependencies{
                implementation(project(":core"))
            }
        }
        val androidMain by getting {
            dependencies {
                implementation("com.google.android.material:material:1.2.1")
            }
        }
        val iosMain by getting
    }
}
but then in shared commonMain i get core:iosMain target instead of core:commonMain target. Does anyone experienced something similar?