socket.io-android-chat icon indicating copy to clipboard operation
socket.io-android-chat copied to clipboard

Failed on building project - Android studio 2.2.2

Open WebMobi59 opened this issue 8 years ago • 1 comments

I tried to run this project on android studio 2.2.2 But it give me error

Failed to resolve:io.socket:socket.io-client:0.8.1

So I changed the dependencies like below

compile ('io.socket:socket.io-client:0.5.0') { exclude group: 'org.json', module: 'json' }

But same result. Any advance ?

WebMobi59 avatar Dec 14 '16 05:12 WebMobi59

Try this:

compile ('com.github.nkzawa:socket.io-client:0.3.0') { // excluding org.json which is provided by Android exclude group: 'org.json', module: 'json' }

lazarusvc avatar Jan 14 '17 23:01 lazarusvc