From e02442330c2b5e5c277448bf896c071baf237b79 Mon Sep 17 00:00:00 2001 From: Max Albright Date: Wed, 25 Sep 2024 08:09:49 -0700 Subject: [PATCH] Delete deprecated liquid player dependency Summary: The liquid player dependency has not been used since it was added in [2020](https://l.workplace.com/l.php?u=https%3A%2F%2Fwww.internalfb.com%2Fdiff%2FD22780550%3Fwhitespace%3DSHOW_ALL&h=AT14LQjuKK3Fc_XBpm9_DKN3Oqu_4aZEc98osMvhMqFHIAfHlY2yzM7mXcDtcd1Q1AcyKhox2DcBXw4T_CAVJjfR9YRlvNALcqw9RhDyOAQIXtgjsLYMNxXkX1u9OsPqOsTenjr8fMJDUKbBRBcT7Ee1qMIItoPpC0fd7g), and it is now causing all FBSDK diffs to fail tests due to the package manager no longer supporting it. We should remove this to re-enable progress on the FBSDK. Reviewed By: jjiang10, KylinChang Differential Revision: D63364134 fbshipit-source-id: 6b4ad2f9db7095436292c1d249f7698b17d416d1 --- buildSrc/src/main/kotlin/Dependencies.kt | 2 -- 1 file changed, 2 deletions(-) diff --git a/buildSrc/src/main/kotlin/Dependencies.kt b/buildSrc/src/main/kotlin/Dependencies.kt index d37344561d..f23bdbe096 100644 --- a/buildSrc/src/main/kotlin/Dependencies.kt +++ b/buildSrc/src/main/kotlin/Dependencies.kt @@ -38,7 +38,6 @@ object Versions { const val json = "20180130" const val kotlin = "1.5.10" const val leakcanaryAndroid = "2.9.1" - const val liquidcore = "0.6.2" const val material = "1.0.0" const val mockitoInline = "2.26.0" const val mockitoKotlin = "2.2.11" @@ -120,7 +119,6 @@ object Libs { "com.squareup.leakcanary:leakcanary-android:${Versions.leakcanaryAndroid}" const val leakcanary_object_watcher = "com.squareup.leakcanary:leakcanary-object-watcher-android:${Versions.leakcanaryAndroid}" - const val liquidcore = "com.github.LiquidPlayer:LiquidCore:${Versions.liquidcore}" const val mockito_inline = "org.mockito:mockito-inline:${Versions.mockitoInline}" const val mockito_kotlin = "org.mockito.kotlin:mockito-kotlin:${Versions.mockitoKotlin}" const val mockwebserver = "com.squareup.okhttp3:mockwebserver:${Versions.mockwebserver}"