-
Notifications
You must be signed in to change notification settings - Fork 787
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change iOS deployment target for Xcode 12 #604
base: master
Are you sure you want to change the base?
Conversation
This removes the warning about iOS 8 no longer being supported in Xcode 12 while maintaining support for older versions of Xcode. Technically checking the compiler version isn’t an exact 1:1 for checking for Xcode version, but in practice should work in all scenarios.
@davbeck Could we get this merged? Would a great help to not have Xcode complain about deployment target when using the SPM module |
@julienbodet Any chance that this could get released as a patch? The warnings have been there for quite some time now 😬 |
@WilliamDenniss Could we get this merged some time soon? |
Is there any update of whether this PR will be merged? Our CI build processes continue to show these warnings when using this library |
+1 for a merge please, can't find any other way to remove these warnings. (SPM) |
Like to see it merged asap to get rid of warnings with SPM |
Please merge this |
Is also covered in #661. Can anyone contact the maintainers to merge one of those? These warnings are really annoying to me... |
#661 is a better implementation of this. It would be preferable to merge that instead. The platform declarations can be removed entirely as they match the minimum version supported by SPM: |
This removes the warning about iOS 8 no longer being supported in Xcode 12 while maintaining support for older versions of Xcode. Technically checking the compiler version isn’t an exact 1:1 for checking for Xcode version, but in practice should work in all scenarios.