As mentioned by @JRK in the comments, it seems like there are duplicate library links in your project. I encountered a similar issue where RCTText, RCTNetwork, RCTWebSocket, and RCTAnimation were all linked both in my ios/Podfile
and as direct libraries in my app.
Specifically regarding RCTFileReaderModule
, it is likely a dependency of RCTNetwork
. If you see RCTNetwork.xcodeproj listed under your libraries, along with a line in your Podfile referencing RCTNetwork
, consider removing the duplicate library (right-click, choose Delete
, then Remove Reference
).
If after this step you still encounter errors related to other RCT
libraries listed in your Podfile, double-check for any additional duplicates in your project structure.
I have not verified if simply deleting the respective line from the Podfile would solve the issue. However, personally, I opted to maintain the Podfile dependencies as it offers clearer visibility and management of the project's library connections.