Another question :slightly_smiling_face:. If i am using a library that from swift returns an array ...
j
Another question 🙂. If i am using a library that from swift returns an array of Any. Does this automatically get converted to an array of strings in kotlin? That is what I am finding. The library I am using seems to run JSONSerialization from the swift code, so I have a callback that I use to access that. The kotlin code converts it to a lambda that returns a Array<*>, but when i access the first value, instead of it being of a dictionary, it is of a string (as far as I can see it seems to be a string representation of a dictionary). Cheers