Hello,
this might be a really basic question as I don’t have a lot of experience with Swift Package Manager yet.
I would like to know what I need to do in order specify that the frameworks my package depends on, will also be imported and exposed within the file where I import my package.
For example:
I have a framework called »UIComponents« which internally imports UIKit to build custom components.
Now in my app I import UIComponents and have its contents available. However there I can not reference things from UIKit. For that I would need to import UIKit separately.
So how can I import my framework and then also have access to UIKit?
Similarly to how UIKit also gives me access to stuff from Foundation.
Thanks!
this might be a really basic question as I don’t have a lot of experience with Swift Package Manager yet.
I would like to know what I need to do in order specify that the frameworks my package depends on, will also be imported and exposed within the file where I import my package.
For example:
I have a framework called »UIComponents« which internally imports UIKit to build custom components.
Now in my app I import UIComponents and have its contents available. However there I can not reference things from UIKit. For that I would need to import UIKit separately.
So how can I import my framework and then also have access to UIKit?
Similarly to how UIKit also gives me access to stuff from Foundation.
Thanks!