I've suffered from the "not found header" error for several days. Sometimes works but sometimes not. Today I found that the error is solved if I remove the following statement in Podfile.
pod 'RSKImageCropper'
The sentence has resulted in two RSKImageCropper projects and it sometimes make "not found header" error.
You already have RSKImageCropper inside your library.
doing so will not be able to archive or export to ipa. I solved this issue by doing:
these steps might take very long time
I use CocoaPod and solved this issue by doing:
1.react-native unlink react-native-image-crop-picker
2.npm uninstall react-native-image-crop-picker --save
3.delete " pod 'RSKImageCropper'" and " pod 'QBImagePickerController'" in Podfile then pod install
4.install react-native-image-crop-picker again by ReadMe Steps
5.clean Xcode and build again
Simply running pod install again fixed it for me. Xcode seems to have lost the file after I cleaned (Product > Clean).
Update: Happened again months later, and this fixed it:
RSKImageCropper and QBImagePickerController from your Podfilepod installpod installThis is so frustrating. Random and seemingly always pops up again and again. Is there no fix?
should be fixed with https://github.com/ivpusic/react-native-image-crop-picker/releases/tag/v0.19.1
Has this been fixed I seem to be getting the issue each time I open up my project in xcode
Most helpful comment
This is so frustrating. Random and seemingly always pops up again and again. Is there no fix?