After updating to the XCode 16 Beta, when building app i get this error (in attachments), thats basically it. Is there any way to fix that or should I wait for BoringSSL update?
I’ve tried pod update, changing Minimum Deployment version, it didnt helped.
2
Answers
This solve my problem add this line to the Podfile :
xcconfig_mod.gsub!('-G', '') # Removing the -G flag'
And :
In some cases, Xcode settings may need to be adjusted to allow non-modular includes in framework modules.
Open Xcode and navigate to your project’s build settings.
Search for "Allow Non-modular Includes in Framework Modules".
Set this to Yes.
If you are using Cocoapods this is a quick fix:
Add this to you Podfile ->
This issue is from GRPC: https://github.com/grpc/grpc/pull/36904