Hi. I have a project with multiple modules in my project. I have a ‘core’ module, and ‘feature’ modules. The core module initializes a Singleton ‘object’ that is later being consumed by the ‘feature’ module(works as expected for Android) .However,I have noticed that the singleton object is being instantiated twice in iOS. when I looked deeper into this, I noticed that because both of the pods (core, and feature) were added to the iOS app, the ‘core’ module is being added twice(?) - once by the pod itself, and once again by the ‘feature’ module that is dependent on the ‘core’ module in KMM. Is there a way of dealing with this? How can I share information between modules if this is indeed a limitation? I can try to share data by writing to a db of some sort, but is this really the only option?