We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was having a issue with using my assets on windows in the beta, I found the reason was the folder separators.
Example: moko-resources/assets/text/test.txt Gets compiled to:
public actual val test_txt: AssetResource = AssetResource(path = "text\\test.txt")
Where it should be
public actual val test_txt: AssetResource = AssetResource(path = "text/test.txt")
I'm able to hack around it by doing this
val asset = AssetResource( asset.path.replace("\\", "/") )
The text was updated successfully, but these errors were encountered:
#700 fix assets reading on windows
2394524
Merge pull request #706 from icerockdev/#700-fix-assets-path-on-windows
0b1b6cc
Fixed in 0.24.0-beta-4
Sorry, something went wrong.
ExNDY
Successfully merging a pull request may close this issue.
I was having a issue with using my assets on windows in the beta, I found the reason was the folder separators.
Example:
moko-resources/assets/text/test.txt
Gets compiled to:
Where it should be
I'm able to hack around it by doing this
The text was updated successfully, but these errors were encountered: