You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When used in a swift project, on Xcode 14.3, there is a build error. On my end, I can fix this in my Podfile by overriding SocketRocket's build settings in post install script. This can be fixed in the SocketRocket by updating the podspec.
For example:
s.ios.deployment_target = "11.0"
s.osx.deployment_target = "10.13"
s.tvos.deployment_target = "11.0"
s.watchos.deployment_target = "4.0"
The text was updated successfully, but these errors were encountered:
When used in a swift project, on Xcode 14.3, there is a build error. On my end, I can fix this in my Podfile by overriding SocketRocket's build settings in post install script. This can be fixed in the SocketRocket by updating the podspec.
For example:
s.ios.deployment_target = "11.0"
s.osx.deployment_target = "10.13"
s.tvos.deployment_target = "11.0"
s.watchos.deployment_target = "4.0"
The text was updated successfully, but these errors were encountered: