mirror of
https://github.com/status-im/react-native-image-crop-picker.git
synced 2025-02-22 18:38:13 +00:00
fix 'RCTBridgeModule.h' file not found i found that in podsec, The lack of the dependency about 'React/Core'
19 lines
639 B
Ruby
19 lines
639 B
Ruby
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
|
|
version = package['version']
|
|
|
|
Pod::Spec.new do |s|
|
|
s.name = "RNImageCropPicker"
|
|
s.version = version
|
|
s.summary = package["description"]
|
|
s.requires_arc = true
|
|
s.license = 'MIT'
|
|
s.homepage = 'n/a'
|
|
s.authors = { "ivpusic" => "" }
|
|
s.source = { :git => "https://github.com/ivpusic/react-native-image-crop-picker", :tag => 'v#{version}'}
|
|
s.source_files = 'ios/src/*.{h,m}'
|
|
s.platform = :ios, "8.0"
|
|
s.dependency 'RSKImageCropper'
|
|
s.dependency 'QBImagePickerController'
|
|
s.dependency 'React/Core'
|
|
end
|