From 6ac8d138c88d96cdf9c9e4adb5c2ccfcc21d1cfa Mon Sep 17 00:00:00 2001 From: Jaehwa Noh Date: Sun, 18 Jan 2026 22:51:21 +0900 Subject: [PATCH] Set default test dependency at feature plugins. Change-Id: Ie4cc71b900bb0760b94c3efcae707d31fbc09a91 --- .../src/main/kotlin/AndroidFeatureConventionPlugin.kt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-logic/convention/src/main/kotlin/AndroidFeatureConventionPlugin.kt b/build-logic/convention/src/main/kotlin/AndroidFeatureConventionPlugin.kt index a71856ce8..516436f5e 100644 --- a/build-logic/convention/src/main/kotlin/AndroidFeatureConventionPlugin.kt +++ b/build-logic/convention/src/main/kotlin/AndroidFeatureConventionPlugin.kt @@ -45,6 +45,9 @@ class AndroidFeatureConventionPlugin : Plugin { "implementation"(libs.findLibrary("androidx.navigation3.runtime").get()) "implementation"(libs.findLibrary("androidx.tracing.ktx").get()) + "testImplementation"(project(":navigation")) + "testImplementation"(project(":core:navigation")) + "androidTestImplementation"( libs.findLibrary("androidx.lifecycle.runtimeTesting").get(), )