/AppDelegate.m: Use of undeclared identifier 'RCTLinkingManager'
What's your React-Native version?
Sorry, I forgot to import it
I fixed this problem by
import "RCTLinkingManager.h"
Never mind :-)
I import it but it is showing 'RCTLinkingManager.h' file not found
I was getting RCTLinkingManager.h' file not found as well, but this solved for me:
#import <React/RCTLinkingManager.h>
Kindly make sure that you place the
`#import <React/RCTLinkingManager.h>`
in the Appdelegate.m file above the
#ifdef FB_SONARKIT_ENABLED
it worked for us.
Most helpful comment
Kindly make sure that you place the
in the Appdelegate.m file above the
#ifdef FB_SONARKIT_ENABLEDit worked for us.