Skip to content

Commit 29ad2df

Browse files
committed
Fix referenced inputs.
1 parent 91aea06 commit 29ad2df

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

buildSrc/src/main/java/com/google/firebase/gradle/plugins/VendorPlugin.kt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,12 @@ class VendorTransform(
127127
return mutableSetOf(QualifiedContent.Scope.PROJECT)
128128
}
129129

130+
override fun getReferencedScopes(): MutableSet<in QualifiedContent.Scope> {
131+
return mutableSetOf(QualifiedContent.Scope.PROJECT)
132+
}
133+
130134
override fun transform(transformInvocation: TransformInvocation) {
131-
transformInvocation.javaClass.typeParameters
135+
println(transformInvocation.referencedInputs)
132136
if (configuration.resolve().isEmpty()) {
133137
logger.info("Nothing to vendor. " +
134138
"If you don't need vendor functionality please disable 'firebase-vendor' plugin. " +

0 commit comments

Comments
 (0)