Reputation: 1602
I have a framework (lets say XYZ) which uses a third party framework e.g Alamofire. The project in which i am importing my XYZ framework also uses the same third party framework. How can i manage this common dependency in my project to avoid duplication.
The XYZ framework has resources like storyboard.
Upvotes: 2
Views: 505
Reputation: 257573
Here is a way...
import Alamofire
in both target sources as usualDemo prepared & tested with Xcode 12 / iOS 14
Upvotes: 2