mirror of
https://github.com/status-im/react-native-image-crop-picker.git
synced 2025-02-23 02:48:12 +00:00
* [FIX] Poor image quality after cropping * Update README.md (#826) Add optional configuration details about default ios text button for the camera and the gallery * [IMPROVEMENT] fix android cropping height condition. update podfile lock
31 lines
609 B
Ruby
31 lines
609 B
Ruby
platform :ios, '9.0'
|
|
|
|
target 'example' do
|
|
rn_path = '../node_modules/react-native'
|
|
|
|
pod 'yoga', path: "#{rn_path}/ReactCommon/yoga/yoga.podspec"
|
|
pod 'React', path: rn_path, subspecs: [
|
|
'Core',
|
|
'RCTActionSheet',
|
|
'RCTAnimation',
|
|
'RCTGeolocation',
|
|
'RCTImage',
|
|
'RCTLinkingIOS',
|
|
'RCTNetwork',
|
|
'RCTSettings',
|
|
'RCTText',
|
|
'RCTVibration',
|
|
'RCTWebSocket'
|
|
]
|
|
|
|
pod 'RNImageCropPicker', :path => '../..'
|
|
end
|
|
|
|
post_install do |installer|
|
|
installer.pods_project.targets.each do |target|
|
|
if target.name == "React"
|
|
target.remove_from_project
|
|
end
|
|
end
|
|
end
|