But it if I want to omit create it doesn’t work (e...
# gradle
g
But it if I want to omit create it doesn’t work (extension function for string not found)
b
gildor: Yeah, the existence of both the getter
getPlugins
and the configuration method
plugins
confuse Kotlin
Explicitly disambiguating between the two is required:
Copy code
(plugins) { // makes sure we’re invoking `getPlugins()`
    “firebaseTestLabPlugin” {
        …
    }
}