Hello, I'm building such an app that listen for Web Socket message in Background although the app has been removed from
recent apps.
Anyone have idea for this ?
I'm receiving web socket message by using this code:
var ws= new WebSocket('ws://path/to/server');
ws.onmessage= function(data){
app.ShowPopup(data.data);
}
How should add this to background service ?