I have a project (framework) including pods, frameworks, bridging headers and many other files with various types. I want to make it accessible using cocoapods and can be easily add to other projects. I read many tutorials but non of them mentioned how to include all files of project and all dependencies. I found this:
s.source_files = "YourDirectory/**/*.{swift}"
to add in podspec file but how to add my other files with many different file extensions? How to properly make a big XCode framework a pod?