Tell us which versions you are using:
To compile with pod install
It won't compile
react-native init app
cd app/ios
pod install
// stacktrace or any other useful debug info
[!] CocoaPods could not find compatible versions for pod "React/Core":
In Podfile:
RNImageCropPicker (from /Users/testuser/rntestsix/node_modules/react-native-image-crop-picker) was resolved to 0.24.1, which depends on
React/Core
None of your spec sources contain a spec satisfying the dependency: React/Core.
You have either:
pod repo update or with pod install --repo-update.Note: as of CocoaPods 1.0, pod repo update does not happen on pod install by default.
馃憤 Same issue. It would be great to add [email protected] support
You can temporary do a workaround by changing
s.dependency 'React/Core'
to
s.dependency 'React-Core'
s.dependency 'React-RCTImage'
in RNImageCropPicker.podspec file then pod install again.
You can temporary do a workaround by changing
s.dependency 'React/Core'
to
s.dependency 'React-Core'
s.dependency 'React-RCTImage'
in RNImageCropPicker.podspec file thenpod installagain.
Yes it was just that, it works fine now.
Thank you @tueht for the workaround!
You can temporary do a workaround by changing
s.dependency 'React/Core'
to
s.dependency 'React-Core'
s.dependency 'React-RCTImage'
in RNImageCropPicker.podspec file thenpod installagain.
Thanks, but it is not really good solution for production projects. I have automated builds on CI, so changing something in node_modules will not work at all, because installation of packages is fully automated.
Thank you
@oleksandr-dziuban Use https://github.com/ds300/patch-package
Already patched this problem and just requires merge. Please merge it
https://github.com/ivpusic/react-native-image-crop-picker/pull/1019
have same problom,
can you tell me when this branch is going to merged ?
@ivpusic Could you please bump npm package version with this fix?
version with support for androidx and react-native 0.60 released.
user version 0.25.0 instead of the last version worked for me
user version 0.25.0 instead of the last version worked for me
It worked for me. Thank you
Most helpful comment
You can temporary do a workaround by changing
s.dependency 'React/Core'to
s.dependency 'React-Core's.dependency 'React-RCTImage'in RNImageCropPicker.podspec file then
pod installagain.