Tried to compile my Project with Swift 4 and Xcode 9.
That everything will build successfully.
Quick and Nimble show strange errors. It is kinda strange because I don't get these errors on a different project.
Errors:


List the software versions you're using:
Please also mention which package manager you used and its version. Delete the
other package managers in this list:
Hi, @Narsail. did you resolve the issue?
Nope. And I couldn't find the pattern yet. I some of my frameworks it is occurring, in some it isn't. That is strange.
I've found the way to solve the problem. The error was due to APPLICATION_EXTENSION_API_ONLY set to YES on project level. Once I set this property to NO it fixed compilation. Funny enough keeping it on for Targets works without any problem.
Mmh on my first attempt your proposed solution didn't work. Even turning it off on the targets didn't help
@Narsail, forgot to mention one more step: do pod install. It will update the settings for Quick pod and it should work.
@Constantine-Fry Indeed. That worked. Thanks a lot!
I have this problem in an otherwise empty project. APPLICATION_EXTENSION_API_ONLY is set to NO but I still get these compiler errors.
Should be addressed by #791.
Most helpful comment
I've found the way to solve the problem. The error was due to
APPLICATION_EXTENSION_API_ONLYset toYESon project level. Once I set this property toNOit fixed compilation. Funny enough keeping it on for Targets works without any problem.