From 3220100d0c63393f63dd847618b7a25e37e5fb24 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Thu, 11 Jul 2024 04:11:45 -0700 Subject: [PATCH] Add missing json serialization dep (#5651) Summary: Something was presumably only added in buck land. Pull Request resolved: https://github.com/facebook/flipper/pull/5651 Test Plan: ``` ./gradlew :sample:assembleDebug BUILD SUCCESSFUL in 1m 53s ``` --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/flipper/pull/5651). * __->__ https://github.com/facebook/flipper/issues/5651 * https://github.com/facebook/flipper/issues/5649 Reviewed By: antonk52 Differential Revision: D59629629 Pulled By: passy fbshipit-source-id: 42979a7c6170b240a3abdd2963c8d5067e25b64e --- android/plugins/litho/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/android/plugins/litho/build.gradle b/android/plugins/litho/build.gradle index 83a3a6a89c2..b583d189f68 100644 --- a/android/plugins/litho/build.gradle +++ b/android/plugins/litho/build.gradle @@ -37,6 +37,7 @@ android { implementation deps.lithoSectionsCore implementation deps.lithoWidget implementation deps.supportAppCompat + implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.1" compileOnly deps.jsr305 testImplementation deps.junit