I have an iOS project (let's call it mainProj) with a library dependency. The library is used in other projects as well. Let's call this library utilLib.
Now, I want to add another library (let's call it logLib) as dependency in both the mainProj and the utilLib.
The problem is that adding logLib as dependency in both mainProj and utilLib leads to duplicate symbols. The other problem is that both the mainProj and utilLib need to depend on that logLib as they need to work independent one of the other.
Is there a work-around for this problem?