mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 17:45:59 +00:00
5aca739cc2
Summary: This will require people who use CocoaPods to update their Podfiles. You can see an example of a Podfile set up to use the Cxx bridge here: https://github.com/mhorowitz/native-navigation-boilerplate/blob/master/ios/Podfile If this doesn't work, you can continue to use the old bridge by adding a dependency of 'BatchedBridge' to the React subspecs in your Podfile, but this will stop working once the old bridge is removed. Reviewed By: javache Differential Revision: D4981920 fbshipit-source-id: 7c4f3bf1c3f9af3f934f03ec003a05d0cd3cb259
18 lines
661 B
Ruby
18 lines
661 B
Ruby
Pod::Spec.new do |spec|
|
|
spec.name = 'DoubleConversion'
|
|
spec.version = '1.1.5'
|
|
spec.license = { :type => 'BSD' }
|
|
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.platform = :ios, '8.0'
|
|
|
|
end
|