Xcode backward compatibility

My client is using Xcode 11 but the iOS framework imported in the project is available only in Xcode 13. Client is getting "framework not found" in Xcode 11 . Is there a way to make my project compatible with older Xcode Version?

Replies

Yes, but new frameworks are just not built into older versions and therefore will not compile the project.

  • I know weak link is for iOS backward compatilibty. I am looking for Xcode backward compatibility. Is there any work around link weak link?

Add a Comment