Under delphi Alexandria, when I try to compile my ios app I receive this warning message from the linker :
ld: warning: object file (.\Libraries\ios\facebook\FBSDKLoginKit.xcframework\ios-arm64/FBSDKLoginKit.framework/FBSDKLoginKit(AppEvents+Internal.o)) was built for newer iOS version (12.0) than being linked (11.0)
How to get ride of this error message or how to say to the linker the we target iOS 12 instead of iOS 11 ?
I found, just add the -w to the linker option flag :)
NOTE (2025) you can also get ride of the warning message with :
you can set the minimum deployment version for macOS or iOS in Project Options - Project Options > Building > Delphi Compiler > Linking > Minimum (iOS|macOS) version supported;