Bug Report
Issue
pod install fails on iOS when react-native-faster-image is installed on React Native 0.84.
Error:
[!] Unable to find a specification for `RCT-Folly` depended upon by `FasterImage`
You have either:
* mistyped the name or version.
* not added the source repo that hosts the Podspec to your Podfile.
Expected Behavior
pod install should complete successfully after installing react-native-faster-image on React Native 0.84.
Actual Behavior
pod install fails due to missing RCT-Folly dependency.
When react-native-faster-image is removed, pod install works perfectly and the project builds successfully.
Steps to Reproduce
- Install react-native-faster-image
npm install react-native-faster-image
- Run
-
Pod installation fails with RCT-Folly error
-
Remove the package
npm uninstall react-native-faster-image
cd ios
pod install
- Pod install works successfully
Environment
- React Native: 0.84
- Platform: iOS
- Hermes: Enabled
- New Architecture: Enabled
- CocoaPods: (fill your version)
- macOS: (fill your version)
Additional Notes
It appears react-native-faster-image depends on RCT-Folly, which is no longer available or has changed in React Native 0.84.
The FasterImage.podspec includes:
This causes CocoaPods to fail during installation.
Suggested Fix
Update FasterImage podspec to support React Native 0.84 by:
- updating the Folly dependency
- or removing the outdated
RCT-Folly dependency
- or aligning with the current React Native iOS pod structure
Impact
The library cannot be used in React Native 0.84 iOS projects because pod installation fails completely.
Bug Report
Issue
pod installfails on iOS when react-native-faster-image is installed on React Native 0.84.Error:
Expected Behavior
pod installshould complete successfully after installingreact-native-faster-imageon React Native 0.84.Actual Behavior
pod installfails due to missingRCT-Follydependency.When
react-native-faster-imageis removed,pod installworks perfectly and the project builds successfully.Steps to Reproduce
Pod installation fails with RCT-Folly error
Remove the package
Environment
Additional Notes
It appears
react-native-faster-imagedepends onRCT-Folly, which is no longer available or has changed in React Native 0.84.The FasterImage.podspec includes:
This causes CocoaPods to fail during installation.
Suggested Fix
Update FasterImage podspec to support React Native 0.84 by:
RCT-FollydependencyImpact
The library cannot be used in React Native 0.84 iOS projects because pod installation fails completely.