iOS: Deprecate iOS 9 / tvOS 9 SDK support

Summary:
It is time to target SDK version 10.0+.

Changelog: [iOS] [Deprecated] - Deprecating support for iOS/tvOS SDK 9.x, 10.0+ is now required

Reviewed By: mdvacca

Differential Revision: D19265731

fbshipit-source-id: 93b6f9e8f61c5b36ff69e80d3f18256aa96cc2c0
This commit is contained in:
Kevin Gozali
2020-01-02 12:49:45 -08:00
committed by Facebook Github Bot
parent 87370c4c05
commit 674b591809
34 changed files with 61 additions and 61 deletions
+2 -2
View File
@@ -19,12 +19,12 @@ end
Pod::Spec.new do |s|
s.name = "React-RCTText"
s.version = version
s.summary = "A React component for displaying text."
s.summary = "A React component for displaying text."
s.homepage = "http://facebook.github.io/react-native/"
s.documentation_url = "https://facebook.github.io/react-native/docs/text"
s.license = package["license"]
s.author = "Facebook, Inc. and its affiliates"
s.platforms = { :ios => "9.0", :tvos => "9.2" }
s.platforms = { :ios => "10.0", :tvos => "10.0" }
s.source = source
s.source_files = "**/*.{h,m}"
s.preserve_paths = "package.json", "LICENSE", "LICENSE-docs"