0

I have a service in my app and start it as follows

Intent intent = new Intent(this, Prueba.class);
startService(intent);

Also, your method return onStartCommand STAR_STICKY;

However, every time I close the app the service is restarted. As for the service do not restarts and keep running?

Charles
  • 50,943
  • 13
  • 104
  • 142
Afermin
  • 41
  • 4

1 Answers1

0

Please check it out may be this can be useful for you:

http://developer.android.com/reference/android/app/Service.html#ServiceLifecycle

rupesh
  • 2,865
  • 4
  • 24
  • 50