ExceptionCatcher
ExceptionCatcher copied to clipboard
Internal sometimes clashes with my "real" Internal target
Can the Internal dependency be renamed into something less abstract? I'm using an internal "Internal" static framework inside the project and it seems Xcode doesn't always like it.
Every so often, especially when switching between build configurations and schemes, Xcode build would fail with an error. I'm guessing ExceptionCatcher sometimes confuses my internal framework with its own, and fails because of minimum deployment targets differences:
~/Library/Developer/Xcode/DerivedData/…/SourcePackages/checkouts/ExceptionCatcher/Sources/ExceptionCatcher/ExceptionCatcher.swift:2:29 Compiling for macOS 10.13, but module 'Internal' has a minimum deployment target of macOS 10.15: ~/Library/Developer/Xcode/DerivedData/…/Build/Products/Development/Internal.framework/Modules/Internal.swiftmodule/arm64-apple-macos.swiftmodule
Naming it into something less abstract might be a good thing in general, like ExceptionCatcherInternal? Happy to make a PR of no one is against?
P.S. Sorry for all the editing – hit the send button too early…