I have a Service [a] that is logging sensor data.
This service is bound to the calling service [b]. However, i need to start the logger-service manually with startService(intent)
bevor binding because i need th onCreate()-Method to run.
Is there a way to kill the Service [a] so that [b] is informed? (preferable from within the onSensorChanged
-method of [a] and in a way that onServiceDisconnected
is being called)