eygraber
05/06/2022, 10:32 PMThe following Kotlin source sets were configured but not added to any Kotlin compilation:
* androidAndroidTestRelease
* androidTestFixtures
* androidTestFixturesDebug
* androidTestFixturesRelease
You can add a source set to a target's compilation by connecting it with the compilation's default source set using 'dependsOn'.
See <https://kotlinlang.org/docs/reference/building-mpp-with-gradle.html#connecting-source-sets>
What do I need to do to make that stop getting logged?Siggi Gunnarss
05/07/2022, 8:07 AMallprojects {
afterEvaluate { project.extensions.findByType<org.jetbrains.kotlin.gradle.dsl.KotlinMultiplatformExtension>()?.let { kmpExt ->
kmpExt.sourceSets.removeAll { it.name == "androidAndroidTestRelease" || it.name.contains("Fixtures") }
}
}
to my gradle project just to hack these source sets away.
A better solution would be to figure out what fixtures is and not attach the source set to begin with, so I hope you get some more answers to your question.joney
05/17/2022, 1:07 PMeygraber
05/17/2022, 2:00 PMeygraber
05/17/2022, 10:43 PM