I've a problem managing subprojects in iOS. Here are my projects:
PROJECT A, main project
- imports B
- imports C
- uses D
PROJECT B, personal subproject
- contains D
PROJECT C, external lib
- contains D
LIBRARY D
I need to let project A import subproject B and subproject C, but there is a problem: A, B and C use the same library D (as described).
The solution I've tried was to leave the library D in project C, with this solution A works, B doesn't (it can't read library from C).
Is there a solution (like to let project A to import B except for the library D)?
Thanks!