I've spent an entire day trying to solve it, tried to open few projects from github, tried Android studio 4.0, 4.2 canary, IntellyJ Idea but still don't see the androidMain in modules
What should I try?
I've spent an entire day trying to solve it, tried to open few projects from github, tried Android studio 4.0, 4.2 canary, IntellyJ Idea but still don't see the androidMain in modules
What should I try?
Try adding additional source sets for your android project by setting in your
shared:build.gradle.kts
file under theandroid
node thisso you could have something like this:
This way you could see the
androidMain
andandroidTest
kotlin files under yourMyApplication11
node