We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4cb8bc commit f1bfe34Copy full SHA for f1bfe34
build-logic/convention/src/main/kotlin/com/google/samples/apps/nowinandroid/Jacoco.kt
@@ -89,10 +89,9 @@ internal fun Project.configureJacoco(
89
}
90
91
// Collect all java and kotlin source directories from the variant's source sets
92
-// val sourceDirs =
93
sourceDirectories.setFrom(
94
- variant.sources.kotlin?.all?.get(),
95
- variant.sources.java?.all?.get()
+ variant.sources.kotlin?.all?.get().orEmpty(),
+ variant.sources.java?.all?.get().orEmpty()
96
)
97
98
executionData.setFrom(
0 commit comments