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 5d8ab3a commit 70b873dCopy full SHA for 70b873d
buildSrc/src/main/java/com/google/firebase/gradle/plugins/VendorPlugin.kt
@@ -49,8 +49,10 @@ class VendorPlugin : Plugin<Project> {
49
fun configureAndroid(project: Project) {
50
51
val vendor = project.configurations.create("vendor")
52
- project.configurations.named("compileOnly") {
53
- extendsFrom(vendor)
+ project.configurations.all {
+ when (name) {
54
+ "compileOnly", "testImplementation", "androidTestImplementation" -> extendsFrom(vendor)
55
+ }
56
}
57
58
val jarJar = project.configurations.create("firebaseJarJarArtifact")
0 commit comments