Build file '/..../multiplatform-code/build.gradle' line: 40
* What went wrong:
A problem occurred evaluating root project 'multiplatform-code'.
> Operation is not supported for read-only collection
And line 40 is:
Copy code
freeCompilerArgs.add("-Xobjc-generics")
I dont understand the source of the problem. What exactly "Operation is not supported for read-only collection" is mean?
r
ribesg
02/04/2020, 10:50 AM
freeCompilerArgs
is a
List
, you can’t add to a list. Try setting it to a new list