fix: add lifecycle-service dependency for AssistantService

LifecycleService requires androidx.lifecycle:lifecycle-service which
was missing from the app module dependencies.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
KoheiYamashita 2026-02-21 18:08:42 +09:00
parent 9ea508a6e0
commit 4282ac4cff
2 changed files with 2 additions and 0 deletions

View file

@ -70,6 +70,7 @@ dependencies {
implementation(libs.activity.compose)
implementation(libs.core.ktx)
implementation(libs.lifecycle.runtime.compose)
implementation(libs.lifecycle.service)
implementation(libs.navigation.compose)
implementation(libs.koin.android)

View file

@ -31,6 +31,7 @@ activity-compose = { group = "androidx.activity", name = "activity-compose", ver
core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "core-ktx" }
lifecycle-runtime-compose = { group = "androidx.lifecycle", name = "lifecycle-runtime-compose", version.ref = "lifecycle" }
lifecycle-viewmodel-compose = { group = "androidx.lifecycle", name = "lifecycle-viewmodel-compose", version.ref = "lifecycle" }
lifecycle-service = { group = "androidx.lifecycle", name = "lifecycle-service", version.ref = "lifecycle" }
# Ktor
ktor-client-okhttp = { group = "io.ktor", name = "ktor-client-okhttp", version.ref = "ktor" }