Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

LifecycleService not found

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?

like image 616
SayantanRC Avatar asked Mar 01 '20 00:03

SayantanRC


1 Answers

As per the Lifecycle Declaring dependencies, you need to use lifecycle-service to use LifecycleService:

implementation "androidx.lifecycle:lifecycle-service:2.2.0"

(This would in addition to lifecycle-runtime-ktx)

like image 84
ianhanniballake Avatar answered Oct 26 '22 07:10

ianhanniballake