Hello everyone! I have a KMM project with the foll...
# multiplatform
m
Hello everyone! I have a KMM project with the following structure
Copy code
-androidApp
-iosApp
-shared
    -kmm1
    -kmm2
I’m using cocoapods plugin in shared modules and have
FirebaseAnalytics pod
in kmm2 project. When I add both shared projects in iosApp using cocoapods it builds fine but if kmm1 depends on kmm2 then build fails with
fatal error: module 'FirebaseAnalytics' not found
It only works if kmm1 also adds FirebaseAnalytics as a pod dependency but this doesn’t look right. Am I missing anything?