[iOS][cocoapods] 'RCTAnimation/RCTValueAnimatedNode.h' file not found
See original GitHub issueDescription
'RCTAnimation/RCTValueAnimatedNode.h' file not found.
in current master https://github.com/facebook/react-native/tree/c233191485ef733aa7a8d4ea5c758b9e6a06964c
- related to 28 of march changes. @janicduplessis might help
- podspec test are passed. @alloy do you have ideas how tests could be improved?
Maybe we need to run
xcbuild
to test?
Reproduction Steps and Sample Code
https://github.com/skv-headless/AwesomeProject - demo project based on this page https://facebook.github.io/react-native/docs/integration-with-existing-apps.html#cocoapods
Solution
It works if change #import <RCTAnimation/RCTValueAnimatedNode.h>
to #import "RCTValueAnimatedNode.h"
Additional Information
- Platform: [iOS]
- Development Operating System: [MacOS]
Issue Analytics
- State:
- Created 6 years ago
- Reactions:77
- Comments:69 (16 by maintainers)
Top Results From Across the Web
iOS - Build fails with CocoaPods cannot find header files
I have checked out his branch and tried to build it, but I am getting an error: ASLogger/ASLogger.h file not found. Even if...
Read more >Trouble with installing cocoapods | Apple Developer Forums
I am getting the same error over and over again and I do not know why. ... `try_do': The compiler failed to generate...
Read more >CocoaPods
CocoaPods is a dependency manager for Swift and Objective-C Cocoa projects. It has over 93 thousand libraries and is used in over 3...
Read more >Installation | React Native Navigation - Open Source
pod install --project-directory=ios ... 'ReactNativeNavigation/ReactNativeNavigation.h' file not found. ... node_modules/react-native-navigation/lib/ios.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
For those who still searching for a quick solution. I was able to launch iOS app with RCTAnimation subspec by including following string to my package.json:
React: 16.0.0-alpha.12 ReactNative: 0.45.0-rc.0
Didn’t work for me with above PR which already accepted in 0.45.0-rc.0
I still get this error even in 0.44.0 where the code in RCTNativeAnimatedModule.h is updated from It works if change #import <RCTAnimation/RCTValueAnimatedNode.h> to #import “RCTValueAnimatedNode.h”
as mentioned by the original Bug logger. So the solution did not work for me… Any other recommended solutions?