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

Tristan

01/21/2020, 4:15 PM
Anyone has already tried this project? https://github.com/joreilly/PeopleInSpace It uses SwiftUI and Jetpack Compose. I can get it running on Android, but not on iOS. I did a gradlew build (takes around 5mins) and then I tried to open the project in XCode. Everything seems fine, but I have a error saying
import common // <- Not found
. How should I proceed?
d

Daniel Rampelt

01/21/2020, 4:53 PM
Did you run
pod install
for the iOS app? Haven't tried that specific project but that might be necessary
t

Tristan

01/21/2020, 5:02 PM
Yes, I did 😞
Copy code
pod deintegrate
Then
Copy code
pod install
worked for me...