forked from ivpusic/react-native-image-crop-picker
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathRNImageCropPicker.podspec
More file actions
26 lines (18 loc) · 879 Bytes
/
RNImageCropPicker.podspec
File metadata and controls
26 lines (18 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
require 'json'
version = JSON.parse(File.read('package.json'))["version"]
Pod::Spec.new do |s|
s.name = 'RNImageCropPicker'
s.version = version
s.summary = 'react-native-image-crop-picker'
s.description = <<-DESC
TODO: Add long description of the pod here.
DESC
s.homepage = 'https://github.com/shimo-react-native/react-native-image-crop-picker'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'lisong' => 'lisong@shimo.im' }
s.source = { :git => 'https://github.com/shimo-react-native/react-native-image-crop-picker.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'ios/*.{h,m,mm}', 'ios/UIImage-Resize/*.{h,m,mm}'
s.vendored_frameworks = 'ios/ImageCropPickerSDK/*.framework'
s.dependency 'React'
end