my Swift App need to support iOS9, but now I'm using a module that needs 10.0 support.. I can't deploy/build the App anymore.
Module file's minimum deployment target is ios10.0 v10.0
Because I defined 9.0 as the deployment target.
It's because of a use ModuleName on top of a Swift file.
How can I catch this? I already made the code that the Module is only available on iOS 10 and up:
@available(iOS 10, *)
But still get the error because of the use on top of the Swift-file.