Does someone have an idea why Im getting the shown...
# compiler
s
Does someone have an idea why Im getting the shown error when passing plugin options via gradle
freeCompilerArgs
but when manually calling
kotlinc
with the args, it works fine and the value is properly set?
z
Try using
+=
instead of
=
s
@Zac Sweers same behaviour
s
-P
and the rest should be in the separate strings instead of separating them with space :)
s
Damnit, the real classic mistake 🤦‍♂️ that should've been obvious, thanks!