-4

Can APP send device data(e.g. accelerometer gyroscope proximity sensor) to the server in the background?

施冠宏
  • 3
  • 1

1 Answers1

1

Yes, it is possible to send data in background. In Android, you need to use a service for that type of application. Here you can find a more complet answer.

But be careful with that. It is not a good practice because running the sensors continuously like that would drain the battery quickly.

Ailton Ramos
  • 106
  • 3