-
Hi Uno Community. I am getting an error specific to iOS and not anything else. I can build and deploy the project for Android. During the build after the signing of the app with my paired remote Mac, I get an error:
I have assets in the "Asset" folder, organized into their own folders. All assets are set to "Build Action: Content. Copy to Output: Do not copy". Please help me understand this error and how to fix it. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Thanks for the report. Can you provide a repro project for this issue? |
Beta Was this translation helpful? Give feedback.
-
The problem was fixed when I switched some YAML Deserialization functions to NewtonSoft.JSON functions. And converted the YAML files to JSON files. Unfortunately I was not able to debug this problem on iOS but I was able to find the bug by debugging WASM. I think it's just a coincidence that it was the same bug. I was using the package YamlDotNet version 12.0.2 in this project. While it was building for all platforms, only Windows and Android were able to successfully deploy and run. That's what I get for trying to be fancy and use YAML lol. I think JSON is converted faster than YAML anyway. |
Beta Was this translation helpful? Give feedback.
The problem was fixed when I switched some YAML Deserialization functions to NewtonSoft.JSON functions. And converted the YAML files to JSON files. Unfortunately I was not able to debug this problem on iOS but I was able to find the bug by debugging WASM. I think it's just a coincidence that it was the same bug.
I was using the package YamlDotNet version 12.0.2 in this project. While it was building for all platforms, only Windows and Android were able to successfully deploy and run.
That's what I get for trying to be fancy and use YAML lol. I think JSON is converted faster than YAML anyway.