My `desktopMain` kotlin files can't import files f...
# multiplatform
p
My
desktopMain
kotlin files can't import files from my
commonMain
files. The imports give me
unresolved reference
errors. The only strange thing I see is that in my
desktopMain
do exist a "*Kotlin*" folder before my kotlin packages and files, and in my
commonMain
there is no "*Kotlin*" folder before the package. Maybe is something wrong in my project structure? it was created using the official wizard
m
commonMain and desktopMain should both have the same structure and it should be “kotlin” and not “Kotlin”. Some file systems are case sensitive.
p
yes, it started working after created manually under windows explorer the kotlin folder, the problem is that Android Studio doesn't create it if I add kotlin files to commonMain, and the official wizard doesn't create the kotlin subfolder either