Hello peeps! What's the best way to use `android.a...
# gradle
d
Hello peeps! What's the best way to use
android.applicationVariants.all
? If I simply do:
Copy code
android.applicationVariants.all { variant ->
    ...
}
then it tries to prefer the kotlin collections extension function
all
which expects a
Boolean
value from the lambda and it fails. How do I make this prefer the function
all
that takes an
Action