The official doc says (<https://blog.jetbrains.com...
# multiplatform
e
The official doc says (https://blog.jetbrains.com/kotlin/2023/08/compose-multiplatform-1-5-0-release/#compose-multiplatform-supports-dialogs,-popups,-and-windowinsets):
Copy code
From 1.5.0 onwards, any assets in the resources folder of an iOS source set are copied into the application bundle by default. So, for example, if you place an image file into src/commonMain/resources/, it will be copied to the bundle and is usable from your code.
I have 2 questions here: 1. It looks like a mistake in the text because it says
of an iOS source set
and later
file into src/commonMain/resources/
. 2. I tried both this locations with a
txt
file and it was not copied into the
/composeApp.bundle
bundle. Is there a working solution to put a file into the bundle?