找不到生命周期服务

LifecycleService not found

我正在尝试延长 LifecycleService。我在 build.gradle

中实现了以下内容
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.2.0"

下面一行给出了错误:

internal class MyService: LifecycleService() {

Unresolved reference: LifecycleService

我做错了什么?

根据 Lifecycle Declaring dependencies,您需要使用 lifecycle-service 才能使用 LifecycleService:

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

(除了 lifecycle-runtime-ktx