https://kotlinlang.org logo
i

Ivann Ruiz

08/30/2020, 5:20 PM
Something neat that's helping my project structure is renaming
app
directory to
android
so it's more clear when working with KMP. All you have to do is rename the folder with
Shift + F6
, and go to
settings.gradle.kts
and change the include string from
app
to
android
.
👍 4
s

saket

08/30/2020, 11:53 PM
I ran into build issues the last time I tried renaming my
main
source set to
android
. Will try this again!
i

Ivann Ruiz

08/31/2020, 3:50 PM
@saket We might be talking about different things. The
sourceSet
stays the same, what i'm changing is the
app
directory name so it says
android
instead.
6 Views