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 91aea06 commit 29ad2dfCopy full SHA for 29ad2df
buildSrc/src/main/java/com/google/firebase/gradle/plugins/VendorPlugin.kt
@@ -127,8 +127,12 @@ class VendorTransform(
127
return mutableSetOf(QualifiedContent.Scope.PROJECT)
128
}
129
130
+ override fun getReferencedScopes(): MutableSet<in QualifiedContent.Scope> {
131
+ return mutableSetOf(QualifiedContent.Scope.PROJECT)
132
+ }
133
+
134
override fun transform(transformInvocation: TransformInvocation) {
- transformInvocation.javaClass.typeParameters
135
+ println(transformInvocation.referencedInputs)
136
if (configuration.resolve().isEmpty()) {
137
logger.info("Nothing to vendor. " +
138
"If you don't need vendor functionality please disable 'firebase-vendor' plugin. " +
0 commit comments