Android Question Detect if another user is running my app remotely

Dears:

after a lot of research, I can´t find any clue about how to detect in real time if an user of my app is online ( running my app ). I know that most of this question its related to server side deployment, but I just can´t find nothing about this.

thanks and regards
 
Solution
This is not too complicated to do with your own B4J server. You can use WebSockets or simply send a http request every minute or so. The server will track the connected clients and remove clients after a few minutes.

JohnC

Expert
Licensed User
Longtime User
Upvote 0
This is not too complicated to do with your own B4J server. You can use WebSockets or simply send a http request every minute or so. The server will track the connected clients and remove clients after a few minutes.
now I got it.. I was thinking that was a "native way" to do so... thanks erel...you are a rockstar!
 
Upvote 0
Top