-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
iOS App testing fails from Xcode version mismatch #36536
Comments
I couldn't figure out the best area label to add to this issue. Please help me learn by adding exactly one area label. |
Tagging subscribers to this area: @safern, @ViktorHofer |
Cc: @akoeplinger @EgorBo |
Is this still relevant? |
Yes I think we should still do this. It should be easy by removing the hardcoded Xcode path here: Line 31 in 010a565
Not a libraries concern though, moving the area label to mono. |
Tagging subscribers to this area: @directhex Issue DetailsAfter applying no-weak-imports workaround when building iOS apps and deploying to a local device following this
The following error occurs
It turns out that the active developer directory had been set to Xcode 11.3
However, the main build uses This can be resolved through
|
After applying no-weak-imports workaround when building iOS apps and deploying to a local device following this
The following error occurs
Whole log
It turns out that the active developer directory had been set to Xcode 11.3
However, the main build uses
/Applications/Xcode.app/Contents/Developer
which after updating to Xcode 11.4, would cause a version mismatch, leading to the linker issue.This can be resolved through
sudo xcode-select -s /Applications/Xcode.app
or perhaps building according to
xcode-select -p
The text was updated successfully, but these errors were encountered: