Hey,
I'm working on a new multi-platform application, and part of the application requires a calendar. I've created Day, Week, and Month calendar and they are all working as expected on Mac/iPhone and iPad.
So I decided that I would make them a Library/Package and share with the community.
I created a package project, moved all the working code into it, and then added the package into my project as a local dependency. Now I'm getting lots of errors in the package code about everything is only available in macOS 10.15.
It's not the code as I know it works. I have
platforms: [ .macOS(.v10_14), .iOS(.v15) ]
This is my first attempt at a package. Is there something I'm not doing?
Thanks,
Mark