I am currently building code that I would really like to use as a framework by being able to import MyCustomFramework
as I would with Apple frameworks (in the future I would also like to distribute them).
I have some questions about that :
- What is the easiest way to build a framework as what I want? Is this possible to do it directly in Xcode or do I need to use command line tools in the Terminal?
- Will this framework be compatible with multiple platforms (I am thinking about all Apple platforms but also about other platforms supported by Swift such as Linux).
- What is exactly the link between Swift frameworks and the Swift Package Manager ? Do I need SPM to build my framework or is this two different tools?
Thank you.