Is this possible? <https://discuss.kotlinlang.org...
# multiplatform
The amount of folders when im not writing platform specific code is pretty bad. I'm only using commonMain.
j
So delete them!
Otherwise, the answer is in that thread to your original question
m
if i delete them, will it still work in multiple targets?
Copy code
kotlin {
    jvm()
    androidTarget()
    iosArm64()
    iosSimulatorArm64()
    iosX64()
}
these are my targets
j
Yes, the folders do not need to exist
m
oh, nice to know
thanks