I'm encountering a Swift compiler error when building my iOS application. The error indicates that the app_links module has a minimum deployment target of iOS 17.0, but my app is targeting iOS 13.0. Here's the full error message:
Swift Compiler Error (Xcode): Compiling for iOS 13.0, but module 'app_links' has a minimum deployment target of iOS 17.0: /Users/pierrelovenfosse/Documents/Development/Projects/Unanim/Github/Profirst/MERO22APPL/build/ios/Debug-iphoneos/app_links/app_links.framework/Modules/app_links.swiftmodule/arm64-apple-ios.swiftmodule
Steps to Reproduce:
Set the iOS deployment target to iOS 13.0 in Xcode.
Add the app_links package to the project.
Build the project in Xcode for a device.
Expected Behavior: The project should compile successfully without errors when targeting iOS 13.0.
Actual Behavior: The build fails due to the app_links module requiring a minimum deployment target of iOS 17.0.
Question: Could you please explain the reasoning behind setting the minimum deployment target of the app_links module to iOS 17.0? Is there a technical constraint, or could earlier iOS versions be supported in a future release?
Describe the bug
I'm encountering a Swift compiler error when building my iOS application. The error indicates that the app_links module has a minimum deployment target of iOS 17.0, but my app is targeting iOS 13.0. Here's the full error message:
Swift Compiler Error (Xcode): Compiling for iOS 13.0, but module 'app_links' has a minimum deployment target of iOS 17.0: /Users/pierrelovenfosse/Documents/Development/Projects/Unanim/Github/Profirst/MERO22APPL/build/ios/Debug-iphoneos/app_links/app_links.framework/Modules/app_links.swiftmodule/arm64-apple-ios.swiftmodule
Steps to Reproduce:
Expected Behavior: The project should compile successfully without errors when targeting iOS 13.0.
Actual Behavior: The build fails due to the app_links module requiring a minimum deployment target of iOS 17.0.
Question: Could you please explain the reasoning behind setting the minimum deployment target of the app_links module to iOS 17.0? Is there a technical constraint, or could earlier iOS versions be supported in a future release?
Thanks for your reply!