mirror of
https://github.com/status-im/react-native.git
synced 2025-01-12 18:44:25 +00:00
3b688ae6b2
Summary: While the original reason for this change was because of an issue #20780, with further investigation I concluded that the issue is till present for this combo of versions: glog - 0.3.5 google-cast-sdk - 4.3.1 Downgrading google-cast-sdk to 4.3.0 fixed the build issue. Release Notes: -------------- Updated glog version from 0.3.4 to 0.3.5 for iOS [IOS] [ENHANCEMENT] [GLOG] Pull Request resolved: https://github.com/facebook/react-native/pull/20811 Differential Revision: D9485221 Pulled By: hramos fbshipit-source-id: 65caf0839588384a5229a6165506dc6ef62e5fc5
18 lines
684 B
Ruby
18 lines
684 B
Ruby
Pod::Spec.new do |spec|
|
|
spec.name = 'DoubleConversion'
|
|
spec.version = '1.1.6'
|
|
spec.license = { :type => 'MIT' }
|
|
spec.homepage = 'https://github.com/google/double-conversion'
|
|
spec.summary = 'Efficient binary-decimal and decimal-binary conversion routines for IEEE doubles'
|
|
spec.authors = 'Google'
|
|
spec.prepare_command = 'mv src double-conversion'
|
|
spec.source = { :git => 'https://github.com/google/double-conversion.git',
|
|
:tag => "v#{spec.version}" }
|
|
spec.module_name = 'DoubleConversion'
|
|
spec.source_files = 'double-conversion/*.{h,cc}'
|
|
|
|
# Pinning to the same version as React.podspec.
|
|
spec.platforms = { :ios => "9.0", :tvos => "9.2" }
|
|
|
|
end
|