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
Ivan Matkov
09/15/2023, 7:19 AM
compose officially supports only jvm for desktop
g
Giuliopime
09/16/2023, 8:04 PM
You can still make an xcode project for macos and compile business logic only for it, and do the ui in swift
Giuliopime
09/16/2023, 8:04 PM
or make an apple multiplatform project to do both ios and macos with the same xcode project
Giuliopime
09/16/2023, 8:05 PM
keep in mind compose only officially supports ios atm