Hi All.
I have implemented a long duration service, cause I need to run a webservice call every 30 seconds.
Sub Service_Start(StartingIntent As Intent)
'my app code
StartServiceAt(Me, DateTime.Now + 30 * 1000, False)
End Sub
When I start the service I used to call
And when I decided that is not necessary to execute the service any more, I call
In the first moment, looks that the service stops. But when I finish my APP, after some seconds, the service starts to log my position again.
How can I definitely stop the service, and stop to log my position.
Can anybody help me?
Thanks