I'm using the AlarmManger to schedule a keep alive timer to remote server, so every INTERVAL an UDP package are send to the server. Should i get a Wifi/CPU lock when the package sent or running on the AlarmManager context is enough? Note: I'm running a service to keep the application in background
feedback
|
|
Yes, you'll need a Wifi/CPU lock in order to be able to do this. A word of caution though, you're going to kill the users battery by doing this. You should figure out a way to communicate with your server asynchronously, like with REST. Android makes it really easy for people to figure out which apps are using up the most battery power, so unless you want a bunch of uninstalls, you should probably figure out a way around this. | |||||||||||
feedback
|