https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
m

Mustafa

05/06/2020, 10:40 AM
Hi guys I am coming from Android, web background and have been trying to run the app I got from various GitHub sample Kotlin native code. When I run in xcode I get swift compile error "no such file or directory" for various swift files that are clearly in the project structure.
j

John O'Reilly

05/06/2020, 11:35 AM
Not sure if this is one you've tried? https://github.com/joreilly/PeopleInSpace Assuming you're not seeing some general issue with XCode setup then you should be able (from root of that project) to do:
Copy code
cd ios/PeopleInSpaceSwiftUI 
open PeopleInSpaceSwiftUI.xcworkspace
and then hit run
It's a pretty minimal project but might help at least to prove out (or not) that you have working setup
m

Mustafa

05/06/2020, 3:23 PM
I was able to get my project working. Thanks for the tip.