diff --git a/app/shared/build.gradle.kts b/app/shared/build.gradle.kts index 3463d79..e32d967 100644 --- a/app/shared/build.gradle.kts +++ b/app/shared/build.gradle.kts @@ -81,4 +81,12 @@ kotlin { registerPublish(libName, type = "Debug", repo, branch = "main") registerPublish(libName, type = "Release", repo, branch = "main") } + sourceSets { + val commonTest by getting { + dependencies { + // Connect commonTest to main source set compilation + implementation(kotlin("test-common")) + } + } + } }