react-native-mail
react-native-mail copied to clipboard
xCode build failing after linking with binaries
xCode build fails with no indication of why after I add libRNMail.a to the Link Binary With Libraries section of Build Phases, anyone seen this before?
has to do with not being able to find my RCTBridgeModule.h file, but it's there... anything I am missing besides what's in the Read.me
@adunn511 You need to do one thing which is not written in the documentation.
Go to Product->Scheme->Edit Scheme->Build, add RNMail into the Targets list. Make sure RNMail is after React and before your project's target (this is very important). This scheme list determines in what order XCode build your libraries. By putting RNMail between React and your project's target, you are telling XCode to build React first, then your RNMail, then your project.
@adunn511 You need to do one thing which is not written in the documentation.
Go to Product->Scheme->Edit Scheme->Build, add RNMail into the Targets list. Make sure RNMail is after React and before your project's target (this is very important). This scheme list determines in what order XCode build your libraries. By putting RNMail between React and your project's target, you are telling XCode to build React first, then your RNMail, then your project.
Your solution gives an error - Invalid bitcode signature, linker command failed with exit code 1. Are there any other ideas?
still cant find 'React/RCTBridgeModule.h'
still cant find 'React/RCTBridgeModule.h'
Are you decided this problem?