-
Notifications
You must be signed in to change notification settings - Fork 24.4k
Commit
… for 10.0+ Summary: Re-landing the reverted change: This removes all callsites that rely on runtime checks to detect the target deployment version. We no longer need to check for iOS 10+ in a few places. Note: for this to compile, the hosting app needs to target iOS 10.0+. Changelog: [iOS] [Deprecated] - Deprecate iOS 9 Reviewed By: sammy-SC Differential Revision: D19411136 fbshipit-source-id: ec0a957dc57819f0ee7d138c858209cabe3e5102
- Loading branch information
There are no files selected for viewing
2 comments
on commit 58a6a40
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have a doubt on the wording here. Deprecation means "still working, but will be removed soon". However, looking at this, it seems like iOS 9 will not be supported at all and any new build will require iOS 10. Is this right?
Also, where in the changelog can we find how to "migrate" this? I'm guessing it is just a podfile and xcode config update, but perhaps there's more...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, iOS 10.0 is required target deployment after this commit. You can modify your Podfile target OS version (for your app), i.e. update this field: https://guides.cocoapods.org/syntax/podfile.html#platform
@fkgozali Would it be better to move this check with the other version checks below (L228, L240) instead of having it here by itself?