Hey everyone, I have a Compose Multiplatform app...
# multiplatform
b
Hey everyone, I have a Compose Multiplatform app that uses an iOS extension called
NotificationService
to modify push notifications before they are displayed. I’m accessing functionality from my Compose app within this extension. The issue is that I always need to build the app once without the import and usage of the Compose app in the extension, and only after that can I build the app successfully with the
NotificationService
. I suspect this is because the Kotlin package build phase happens after the dependencies for the iOS extension are resolved. Is there a way to resolve this issue or adjust the build process to avoid this extra step?