I have a simple chat application on nodejs with socket.io@0.9.16 module.The chat app works fine with android 4.x
.But I tried on android 5.0.I got some errors.
errors on server log:
What is the relationship of this error with android version differences?
This error may be releated to the json.I saw.There are experiencing problems with json in Android lollipop 5.0.Does anyone have experience with this issue?
UPDATE:
When I debug,I discovered that:
if (jsObj != null)
socket.emit("bla", jsObj);
jsObj is not null.But I get the null jsobj on the server-side after emitted.Why??