iOS OSS: update podspec's to target iOS 9.0

Summary: A few more places to update to target iOS 9.0 (upgraded from 8.0)

Reviewed By: shergin

Differential Revision: D8108719

fbshipit-source-id: f17aa5e5aa34fdad57196202bf67a842735d4cdc
This commit is contained in:
Kevin Gozali
2018-05-22 23:23:05 -07:00
committed by Facebook Github Bot
parent 21189be7cb
commit 092103e752
6 changed files with 11 additions and 11 deletions

View File

@@ -34,14 +34,14 @@ Pod::Spec.new do |spec|
]
# Pinning to the same version as React.podspec.
spec.platforms = { :ios => "8.0", :tvos => "9.2" }
spec.platforms = { :ios => "9.0", :tvos => "9.2" }
# Set this environment variable when *not* using the `:path` option to install the pod.
# E.g. when publishing this spec to a spec repo.
source_files = 'yoga/**/*.{cpp,h}'
source_files = File.join('ReactCommon/yoga', source_files) if ENV['INSTALL_YOGA_WITHOUT_PATH_OPTION']
spec.source_files = source_files
header_files = 'yoga/{Yoga,YGEnums,YGMacros}.h'
header_files = File.join('ReactCommon/yoga', header_files) if ENV['INSTALL_YOGA_WITHOUT_PATH_OPTION']
spec.public_header_files = header_files