-
Notifications
You must be signed in to change notification settings - Fork 333
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Pods] Only include files in source_files that can be compiled #86
Conversation
hi @iwasrobbed, thanks for your response! I've read through the thread you linked to but I don't fully understand the reasoning. These are valid warnings that Xcode is throwing, so why not fix them in the podspec? I've tested this with my fork and it compiles/runs fine. We could add the |
Sorry for the delayed reply! If you can get all files to still be included, it compile fine and integrate fine into an example project as well as get |
Sure thing. I'm having some trouble getting |
Try |
Thanks for the advice. I made a change to preserve all the files, and I verified that |
Thanks again @njdehoog ! I'll have a quick look in the morning and merge if all looks 👍 |
Just ran a quick integration test and this looks great. Thanks again @njdehoog ! |
Released to v0.5.2 here: #87 Thanks again! |
You're welcome. Thanks for getting this released! |
These warnings are thrown by the compiler when including Down as a cocoapod:
By excluding files that should not be compiled from
spec.source_files
, we can prevent those warnings.