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 3271208 commit f925bfcCopy full SHA for f925bfc
build-logic/convention/src/main/kotlin/com/google/samples/apps/nowinandroid/Jacoco.kt
@@ -94,11 +94,10 @@ internal fun Project.configureJacoco(
94
?.all
95
?.map { directories -> directories.map { it.asFile.path } }
96
?: provider { emptyList() }
97
- operator fun Provider<List<String>>.plus(other: Provider<List<String>>) =
98
- zip(other) { first, second -> first + second }
99
sourceDirectories.setFrom(
100
files(
101
- variant.sources.java.toFilePaths() + variant.sources.kotlin.toFilePaths()
+ variant.sources.java.toFilePaths(),
+ variant.sources.kotlin.toFilePaths()
102
),
103
)
104
0 commit comments