Hello! I have a weird issue where my ios app does...
# multiplatform
m
Hello! I have a weird issue where my ios app doesn't recognize my "shared" module anymore.
import shared
in my AppDelegate.swift gives me
no such module
. I have the build phase setting :
Copy code
cd "$SRCROOT/.."
./gradlew :shared:embedAndSignAppleFrameworkForXcode
When looking at the xcode build logs (screenshot), I can see that the embed task is being skipped due to configuration cache, which I suspect is leading to the problem. Anyone have an idea as to what is happening?
v
Well, you could try adding
--rerun-tasks
to the
./gradlew :shared:embedAndSignAppleFrameworkForXcode
command. This should force this to never be skipped. But it will ruin your build times. Otherwise no idea 😬