From 302985d17dba7d769b8f97aa63285055b64129c9 Mon Sep 17 00:00:00 2001 From: KoheiYamashita Date: Sat, 21 Feb 2026 16:25:05 +0900 Subject: [PATCH] fix: add serialization-json dependency to app module for BroadcastReceiver AgentMessageReceiver uses kotlinx.serialization.json.Json to parse broadcast messages, but the app module was missing the runtime library. Co-Authored-By: Claude Opus 4.6 --- android/app/build.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index 64a171062..e28c55742 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -83,5 +83,7 @@ dependencies { implementation(libs.coroutines.android) + implementation(libs.serialization.json) + debugImplementation(libs.compose.ui.tooling) }