I am using the Swift Package Manger (SPM) to add third party libraries to my iOS application. I would like to display acknowledgements and their respected licences. In the old CocoaPod days this was possible with several libraries (e.g. this one). Is there a way to achieve the similar things with SPM?
I am looking for
- An automated solution which generates licence information when a new dependencies is added/removed via SPM.
- Offers a
UIViewControllerorSettings.bundlewhere the licences are displayed.
This doesn't have to be a library but can also be a build script. Item 2 could also be done by myself.