IGListKit/Podfile
Kent Sutherland 3cd3a111dd Update deployment targets to silence Xcode 14 warnings (#1573)
Summary:
## Changes in this pull request

Xcode 14 changed the minimum deployment target to iOS/tvOS 11.0 and macOS 10.13. This PR moves up the deployment targets so that a warning isn't shown on every build.

I also silenced the development region and base localization warnings.

### Checklist

- [x] All tests pass. Demo project builds and runs.
- [x] I added tests, an experiment, or detailed why my change isn't tested.
- [x] I added an entry to the `CHANGELOG.md` for any breaking changes, enhancements, or bug fixes.
- [x] I have reviewed the [contributing guide](https://github.com/Instagram/IGListKit/blob/main/.github/CONTRIBUTING.md)

Pull Request resolved: https://github.com/Instagram/IGListKit/pull/1573

Differential Revision: D45223095

Pulled By: TimOliver

fbshipit-source-id: 57fbd284809c09f86a9731d0676332de35fbe0df
2023-05-01 22:48:23 -07:00

15 lines
276 B
Ruby

source 'https://cdn.cocoapods.org'
use_frameworks!
inhibit_all_warnings!
workspace 'IGListKit'
target 'IGListKitTests' do
platform :ios, '11.0'
pod 'OCMock', '~> 3.8.1'
end
target 'IGListKit-tvOSTests' do
platform :tvos, '11.0'
pod 'OCMock', '~> 3.8.1'
end