-
Hello, We recently added
The strangest part is that it fails compiling
We have a minimum deployment target of iOS 17, so we should not even be using Any pointers to help debug this? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Hi @cabeca, thanks for sharing this. Can you get all the details of your CI and see if anything differs with your local environment? And a repro of this would be nice to have for us to investigate more deeply. |
Beta Was this translation helpful? Give feedback.
-
After many, many hours of debugging, I finally figured out why I was having this compilation problem on CI.
This causes the problem stated above. |
Beta Was this translation helpful? Give feedback.
After many, many hours of debugging, I finally figured out why I was having this compilation problem on CI.
We use
.xcconfig
files for our project, and one of the files had defined the following:This causes the problem stated above.
I removed this configuration from the
.xcconfig
file, and added it to the main.xcodeproj
file instead, and that fixes the problem.