-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
library not found for -lQBImagePickerController #27
Comments
probably you are missing one step in installation. Follow step by step here https://github.com/ivpusic/react-native-image-crop-picker#ios-step-by-step-installation |
I followed the steps and created a new RN project, but it still occurred the same error... |
I just created new project and did steps from here https://github.com/ivpusic/react-native-image-crop-picker#ios-step-by-step-installation and it worked. Will close this one as probably you are missing something in installation process. |
Open workspace file, not project file fixed for me.Thank you. |
@kokororin how to fix library not found for -lQBImagePickerController? |
@suinia Sorry, I haven't touch RN in a long time. (version now is 0.10.x while when I use, it is 0.4.x) |
@kokororin 谢谢 Thanks |
@kokororin great! Thanks) |
opening workspace file worked here too :) anyone have any idea why that might be? |
this issue is happening when don't take completely step 2 of Post-install steps. NOTE: |
This happened to me when I used a different iOS version (12.0) on my Podfile other than 8.0. It seems QBImagePicker is abandoned and no new versions have been released for it for over three years. The last iOS version it supports is 8.0, hence the error. |
@halileohalilei do we have a solution for this ? |
@cchamikara I seem to have got it working fine, but can't remember what the actual problem was back then. Here's the relevant part of my working Podfile if you want to have a look at it: platform :ios, '9.0'
#
# https://github.com/CocoaPods/CocoaPods/issues/4370
#
install! 'cocoapods', :deterministic_uuids => false
target 'MyProject' do
# # this is very important to have!
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 => '../node_modules/react-native-image-crop-picker'
pod 'Firebase/Core'
pod 'Firebase/Messaging'
pod 'RNCViewpager', :path => '../node_modules/@react-native-community/viewpager'
end
... |
Like #7
pod install success with no warning
but build failed in XCode..
The text was updated successfully, but these errors were encountered: