Hi guys I am coming from Android, web background a...
# multiplatform
m
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
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
I was able to get my project working. Thanks for the tip.