I have a json file in a compose multiplatform app in the resources folder and from my understanding, it is available to all the platforms. I am reading the json file using the code
Copy code
val fileBytes = resources("file.json").readBytes()
The code works on desktop and Android but I am getting a
MissingResourceException
on iOS. Is this behavior expected or am I missing something?