From b8d0bf7fb590e3d90ab93f6ad5bbeba52cb50ce8 Mon Sep 17 00:00:00 2001 From: Jaehwa Noh Date: Sat, 9 May 2026 10:13:28 +0900 Subject: [PATCH] change check to path. Change-Id: I5795fca2eeb2b1e9a82f4c6b1264de6a1c188c86 --- .../src/main/kotlin/AndroidLibraryConventionPlugin.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-logic/convention/src/main/kotlin/AndroidLibraryConventionPlugin.kt b/build-logic/convention/src/main/kotlin/AndroidLibraryConventionPlugin.kt index 3657ef450..07f6f6b96 100644 --- a/build-logic/convention/src/main/kotlin/AndroidLibraryConventionPlugin.kt +++ b/build-logic/convention/src/main/kotlin/AndroidLibraryConventionPlugin.kt @@ -55,7 +55,7 @@ abstract class AndroidLibraryConventionPlugin : Plugin { } configureSpotlessForAndroid() dependencies { - if (project.name != "lint") "implementation"(project(":lint")) + if (project.path != ":lint") "implementation"(project(":lint")) "implementation"(libs.findLibrary("androidx.tracing.ktx").get()) "testImplementation"(libs.findLibrary("kotlin.test").get())