We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Cannot Received Event socket manager "ping" on Android
To Reproduce
Socket.IO server Run On Nodejs version: 4.5.2
4.5.2
Server
import { Server } from "socket.io"; const io = new Server(3000, {}); io.on("connection", (socket) => { console.log(`connect ${socket.id}`); socket.on("disconnect", () => { console.log(`disconnect ${socket.id}`); }); });
Socket.IO client version: 2.1.0 Android library
2.1.0
Client
Socket.io().on(EVENT_PING) { Log.d(LOGGER PACKET, "ping") }
Expected behavior The Socket Io Client Run On Service Class and Foreground Service. with Wakelock Particial
Platform:
gradle module
implementation ('io.socket:socket.io-client:2.1.0') { exclude group: 'org.json', module: 'json' }
Additional context Socket IO Client run successfully. but no Received Ping Like Nodejs Client on ping Event
The text was updated successfully, but these errors were encountered:
Closed in favor of socketio/socket.io-client-java#734.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Cannot Received Event socket manager "ping" on Android
To Reproduce
Socket.IO server Run On Nodejs version:
4.5.2
Server
Socket.IO client version:
2.1.0
Android libraryClient
Expected behavior
The Socket Io Client Run On Service Class and Foreground Service. with Wakelock Particial
Platform:
gradle module
Additional context
Socket IO Client run successfully. but no Received Ping Like Nodejs Client on ping Event
The text was updated successfully, but these errors were encountered: