-
Notifications
You must be signed in to change notification settings - Fork 91
Fix broken compilation in v1.1.0 #44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix broken compilation in v1.1.0 #44
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@nacho-carnicero Thanks for the PR! I've made some suggestions, could you take a look at it?
Co-Authored-By: Jesse Katsumata <niconico.clarinet@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Naturalclar I made the requested changes, should be good for merging 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@nacho-carnicero Thank you! LGTM!
Released v1.1.1 🎉 |
Overview
Following the issue in #43 I am adding this PR in order to fix the compilation. Basically I:
RNCSegmentedControlManager.*
files were not added)React
imports in the project from#import "RCTLibrary.h"
to#import <React/RCTLibrary.h>
NOTE: I only added a link to the manually linking instructions, but this should be done in a better way (for instance by doing a
pod install
or something like this). I don't know very much how installed libraries can be added to the Podfile of the root project when being installed so I did not add that change here, but this would be a nice enhancement to this PR.Test Plan
Basically I just tested that by making those changes my app which would not compile before now compiles.