ForegroundService not getting started from a fragment?
I'm trying to start a service from a fragment but my code doesn't seem to run properly or I think there is something wrong with how I deal with contexts. It runs ok when I start my service from inside an activity but it doesn't work inside a fragment.
This is my fragment class:
class OnAirFragment : BaseFragment() {
private var play = "Play"
private var playValue = false
private lateinit var updatePlaybackUI: BroadcastReceiver
private var playWhenReady = "Play State"...