I've been looking at the Imageviewer example proje...
# compose-ios
c
I've been looking at the Imageviewer example project and in the project level build.gradle.kts I found the following line, which I assume enables usage of the common resources in common compose code running on iOS:
Copy code
cocoapods {
    ...
    extraSpecAttributes["resources"] =
        "['src/commonMain/resources/**', 'src/iosMain/resources/**']"
}
In my project, I am using the "embedAndSignAppleFrameworkForXcode" task, since I do not want to use cocoapods. Is there some way to achieve that without using cocopods?
👍 1
j
I just answered this same question. See this thread.
c
What a coincidence 😃 Thank you very much 👍