React-native-wechat: unable LinkingIOS: undeclared identifier 'RCTLinkingManager'

Created on 6 May 2016  ·  6Comments  ·  Source: yorkie/react-native-wechat

/AppDelegate.m: Use of undeclared identifier 'RCTLinkingManager'

Most helpful comment

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.

All 6 comments

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.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

sunny20131314 picture sunny20131314  ·  6Comments

xclidongbo picture xclidongbo  ·  4Comments

phpsmarter picture phpsmarter  ·  5Comments

qubangliuhui picture qubangliuhui  ·  5Comments

arniu picture arniu  ·  4Comments