I am starting to convert an application from Kotli...
# multiplatform
g
I am starting to convert an application from Kotlin to Kotlin MultiPlatform. Where in the new directory structure should the old res directory (drawables, layouts, values etc) be placed that are not converted to compose yet?
d
😅 1
☝️ 1
a
Until you move them to Multiplatform Resources as mentioned above, you can use them as Android resources by placing them inside
src/androidMain/
but keep in mind that will be accessible only from code in androidMain, won’t be for all platforms.
c
Isn't this only for Compose Multiplatform? Is there an alternative of that for KMP? How does iOS access the strings?