Closed burawi closed 6 years ago
I’m going to guess this is iOS ?
No it's android... When I emit arabic text, Eg: "ق" I get "B" And when I emit this char 'é' the function is not getting called
Next release should fix this
thanks
I just found the solution. Upgrade socket.io-client
to 1.0.0.
In platforms/android/include.gradle
change this:
dependencies {
compile('io.socket:socket.io-client:0.8.2') {
exclude group: 'org.json', module: 'json'
}
}
by this:
dependencies {
compile('io.socket:socket.io-client:1.0.0') {
exclude group: 'org.json', module: 'json'
}
}
The package seems to be not parsing data as unicode. Is there any way to emit and receive unicode ?