I am trying to extend LifecycleService. I have implemented the following in build.gradle
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.2.0"
The below line gives error:
internal class MyService: LifecycleService() {
Unresolved reference: LifecycleService
What am I doing wrong here?