Mathbl
01/18/2024, 1:01 PMimport shared
in my AppDelegate.swift gives me no such module
.
I have the build phase setting :
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?Vidmantas Kerbelis
01/18/2024, 2:20 PM--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 😬