I have a kotlin multiplatform app with ios, androi...
# compose-desktop
j
I have a kotlin multiplatform app with ios, android and JVM targets for linux and mac, but I want to add a MacOS/kotlin/native. Should I make a new xcode project for this in addition to the xcode project for ios?
i
compose officially supports only jvm for desktop
g
You can still make an xcode project for macos and compile business logic only for it, and do the ui in swift
or make an apple multiplatform project to do both ios and macos with the same xcode project
keep in mind compose only officially supports ios atm
j
And MacOS+JVM apps?