The latest version (1.1.1-beta.0) causes a build issue on the latest version of RN (0.62).
fatal error: 'Segment_Firebase/SEGFirebaseIntegrationFactory.h' file not found
The reason is this line in main.m:
#import <Segment_Firebase/SEGFirebaseIntegrationFactory.h>
Apparently, there used to be some naming convention issue that caused - to become _, but that's no longer the case. Changing it back to:
#import <Segment-Firebase/SEGFirebaseIntegrationFactory.h>
solved the build issue.
The latest version (1.1.1-beta.0) causes a build issue on the latest version of RN (0.62).
fatal error: 'Segment_Firebase/SEGFirebaseIntegrationFactory.h' file not foundThe reason is this line in
main.m:Apparently, there used to be some naming convention issue that caused
-to become_, but that's no longer the case. Changing it back to:solved the build issue.