socketio / socket.io-client-swift

Other
5.21k stars 841 forks source link

16 as pod #1383

Closed Antuaaan closed 2 years ago

Antuaaan commented 2 years ago

Hi, would it be possible to get v 16.0.0 available as a pod please?

Just need support for socket.io server version 3 and up and apparently 15.2.0 which is the only one available on pods does not support it. Failing that is there another way we could install the 16.0.0 version maybe?

hrabkin commented 2 years ago

Try to change your Podfile, worked for me

inhibit_all_warnings!
use_frameworks!

target 'YouProjectName' do
    pod 'Socket.IO-Client-Swift', :git => 'https://github.com/socketio/socket.io-client-swift.git', :tag => 'v16.0.1'
end
Antuaaan commented 2 years ago

Thank-you