my app maintains a socket connection with a server through a Service I coded, but once the phone sleeps (a couple minutes after the screen turns off), I am unable to get the typical response from the sleeping phone. A sound is normally played when the Service receives a network event.
My question is, do I need a wake_lock to be able to have my app function. If so, for what components is this wake_lock helpful for? I am curious about the sound and the socket connection. Will I be able to do this with only a partial wake_lock?
As for the socket connection, will I need an additional wifi lock if it is done under wifi? The socket connection only consists of small transaction once a while, so is there a way that I can have the socket connection not under wifi (even if the user enabled wifi), so I don't have to wifi lock and waste power? or are socket connection conveniently done only under 3g/4g or can gracefully degenerate from wifi to 3g/4g?
Thanks!