-
Notifications
You must be signed in to change notification settings - Fork 197
Fix for RNAnalytics not found issue (#30) #116
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
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.
If I manually make these changes in node_modules
everything compiles and runs correctly.
I am facing the same error while integrating with firebase. Is this PR going to me merged anytime soon. |
will this be merged anytime soon? it's causing build fails for |
Can this be merged? Incorrect imports also causing errors in: |
Guys any estimation on when this is going to be merged? How are you able to makes these changes in the node_modules, can you explain us @squirly ? |
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.
All looks good!
Description
RNAnalytics
dependency is missing for all integrations, which needed when it imported inios/main.m
file#import <RNAnalytics/RNAnalytics.h>
Also the integration generator will generate factory_header with
Segment-
format which causing problem since the right format should beSegment_
as an example :Current import ( Invalid ) :
#import <Segment-Adjust/SEGAdjustIntegrationFactory.h>
Correct format :
#import <Segment_Adjust/SEGAdjustIntegrationFactory.h>
Fix for issue below :
#30