Skip to content

Commit

Permalink
iOS OSS: update podspec's to target iOS 9.0
Browse files Browse the repository at this point in the history
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
  • Loading branch information
fkgozali authored and facebook-github-bot committed May 23, 2018
1 parent 21189be commit 092103e
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions RNTester/Podfile.lock
Expand Up @@ -138,11 +138,11 @@ EXTERNAL SOURCES:


SPEC CHECKSUMS: SPEC CHECKSUMS:
boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
DoubleConversion: e22e0762848812a87afd67ffda3998d9ef29170c DoubleConversion: a9706f16e388b53ff12cca34473428ee29746a26
Folly: 9a8eea4725a0b6ba3256ebf206c21e352c23abf8 Folly: c89ac2d5c6ab169cd7397ef27485c44f35f742c7
glog: 1de0bb937dccdc981596d3b5825ebfb765017ded glog: 3931855c9cc99c3fab1355fc162fe369162d8183
React: 0a0271674c3a6772a89a6606f337ed8db583abc0 React: 81df86644d0bca489723c964b33b005901ebfb3b
yoga: bdd268c5812f00bdb52cc2b58f129797e97935eb yoga: b1ce48b6cf950b98deae82838f5173ea7cf89e85


PODFILE CHECKSUM: 30aa63dcdbb3546a2bacdfd4e005bcca50c9b55c PODFILE CHECKSUM: 30aa63dcdbb3546a2bacdfd4e005bcca50c9b55c


Expand Down
2 changes: 1 addition & 1 deletion React.podspec
Expand Up @@ -38,7 +38,7 @@ Pod::Spec.new do |s|
s.source = source s.source = source
s.default_subspec = "Core" s.default_subspec = "Core"
s.requires_arc = true s.requires_arc = true
s.platforms = { :ios => "8.0", :tvos => "9.2" } s.platforms = { :ios => "9.0", :tvos => "9.2" }
s.pod_target_xcconfig = { "CLANG_CXX_LANGUAGE_STANDARD" => "c++14" } s.pod_target_xcconfig = { "CLANG_CXX_LANGUAGE_STANDARD" => "c++14" }
s.preserve_paths = "package.json", "LICENSE", "LICENSE-docs" s.preserve_paths = "package.json", "LICENSE", "LICENSE-docs"
s.cocoapods_version = ">= 1.2.0" s.cocoapods_version = ">= 1.2.0"
Expand Down
4 changes: 2 additions & 2 deletions ReactCommon/yoga/yoga.podspec
Expand Up @@ -34,14 +34,14 @@ Pod::Spec.new do |spec|
] ]


# Pinning to the same version as React.podspec. # 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. # Set this environment variable when *not* using the `:path` option to install the pod.
# E.g. when publishing this spec to a spec repo. # E.g. when publishing this spec to a spec repo.
source_files = 'yoga/**/*.{cpp,h}' source_files = 'yoga/**/*.{cpp,h}'
source_files = File.join('ReactCommon/yoga', source_files) if ENV['INSTALL_YOGA_WITHOUT_PATH_OPTION'] source_files = File.join('ReactCommon/yoga', source_files) if ENV['INSTALL_YOGA_WITHOUT_PATH_OPTION']
spec.source_files = source_files spec.source_files = source_files

header_files = 'yoga/{Yoga,YGEnums,YGMacros}.h' header_files = 'yoga/{Yoga,YGEnums,YGMacros}.h'
header_files = File.join('ReactCommon/yoga', header_files) if ENV['INSTALL_YOGA_WITHOUT_PATH_OPTION'] header_files = File.join('ReactCommon/yoga', header_files) if ENV['INSTALL_YOGA_WITHOUT_PATH_OPTION']
spec.public_header_files = header_files spec.public_header_files = header_files
Expand Down
2 changes: 1 addition & 1 deletion third-party-podspecs/DoubleConversion.podspec
Expand Up @@ -12,6 +12,6 @@ Pod::Spec.new do |spec|
spec.source_files = 'double-conversion/*.{h,cc}' spec.source_files = 'double-conversion/*.{h,cc}'


# Pinning to the same version as React.podspec. # Pinning to the same version as React.podspec.
spec.platforms = { :ios => "8.0", :tvos => "9.2" } spec.platforms = { :ios => "9.0", :tvos => "9.2" }


end end
2 changes: 1 addition & 1 deletion third-party-podspecs/Folly.podspec
Expand Up @@ -31,5 +31,5 @@ Pod::Spec.new do |spec|
"HEADER_SEARCH_PATHS" => "\"$(PODS_TARGET_SRCROOT)\" \"$(PODS_ROOT)/boost-for-react-native\" \"$(PODS_ROOT)/DoubleConversion\"" } "HEADER_SEARCH_PATHS" => "\"$(PODS_TARGET_SRCROOT)\" \"$(PODS_ROOT)/boost-for-react-native\" \"$(PODS_ROOT)/DoubleConversion\"" }


# Pinning to the same version as React.podspec. # Pinning to the same version as React.podspec.
spec.platforms = { :ios => "8.0", :tvos => "9.2" } spec.platforms = { :ios => "9.0", :tvos => "9.2" }
end end
2 changes: 1 addition & 1 deletion third-party-podspecs/glog.podspec
Expand Up @@ -28,6 +28,6 @@ Pod::Spec.new do |spec|
"HEADER_SEARCH_PATHS" => "$(PODS_TARGET_SRCROOT)/src" } "HEADER_SEARCH_PATHS" => "$(PODS_TARGET_SRCROOT)/src" }


# Pinning to the same version as React.podspec. # Pinning to the same version as React.podspec.
spec.platforms = { :ios => "8.0", :tvos => "9.2" } spec.platforms = { :ios => "9.0", :tvos => "9.2" }


end end

0 comments on commit 092103e

Please sign in to comment.