Support React Native 0.39.x / 0.40.x Headers
See original GitHub issueRN 0.39.0 ships with breaking changes to CSSLayout. 0.40.0 ships with changes to the header imports. This causes the build to fail on the react-native-youtube
module:
For 0.39.x users:
For 0.40.0 users:
Issue Analytics
- State:
- Created 7 years ago
- Reactions:10
- Comments:18 (1 by maintainers)
Top Results From Across the Web
Integration With Existing iOS Project failed: 'CSSLayout ...
Description After upgrade to react-native@0.39, Integration With Existing Empty iOS Project failed, and old workaround "postinstall": "find ...
Read more >React Native XcodeBuild fails on header import in CI
I am attempting to build a React Native application on an Os X CircleCI box. My circle.yml is as follows: machine: xcode: version:...
Read more >React Native versions
React Native versions. Open source React Native releases follow a release train that is coordinated on GitHub through the react-native-releases repository.
Read more >Configuring the header bar - React Navigation
Setting the header title. A screen component can have a static property called navigationOptions which is either an object or a function that...
Read more >react-native-video - npm
0 for Android 64bit builds and Android X support. Version 4.x requires react-native >= 0.57.0. Version 3.x requires react-native >= 0.40.0 ...
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 FreeTop Related Reddit Thread
No results found
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
Top GitHub Comments
+1 for this issue
I did what the error suggested and it worked. Click the error, it will take you to the file RCTConvert.h. Then replace #import <CSSLayout/CSSLayout.h> with #import “CSSLayout.h”
I know that modifying this file is not the desired solution, but it was a quick fix.