react-native-wkwebview
react-native-wkwebview copied to clipboard
Undefined symbol: _RCTJSNavigationScheme
Hi, I'm having a problem once I've installed react-native-wkwebview. I use a method installation with link
In fact, if I was wrong. Can someone help me I can not find a solution
Thank
me too, i add "NSString *const RCTJSNavigationScheme = @"react-js-navigation";" in AppDelegate.m
@duckscorpion13 where in the AppDelegate.m did you add
NSString *const RCTJSNavigationScheme = @"react-js-navigation";
I'm having the same problem after removing UIWebView files from react native. (0.59, deleted RCTWebView.h, RCTWebView.m, RCTWebView.h, RCTWebViewManager.m)
ok found it, should be between @implementation and didFinishLaunchingWithOptions:
But what is this? :)
@implementation AppDelegate
NSString *const RCTJSNavigationScheme = @"react-js-navigation";
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{
I have the same issue. I tried solution but not working in react-native: 0.61.1 version. Any solution? @ungaro @DarkXelus
yes I have same issue. any solution ?
yes I have same issue. any solution ?
I changed the library with react-native-webview. It works perfectly.
me too, i add "NSString *const RCTJSNavigationScheme = @"react-js-navigation";" in AppDelegate.m
This actually helped thanks, I am on version 0.60.4
Hi, I am also having the same issue and tried above AppDelegate changes in my project but it doesn't work. 2 years back we changed from react-native-webview
to react-native-wkwebview-reborn
since the TrustKit was not able to intercept the calls from UIWebview hence ssl pinning fails at that time. WKWebView is more recent apple class and is preferred in iOS world, and luckily it exposes a delegate method to do our necessary ssl challenge. Does anyone know if I change back to latest react-native-webview
should work ssl pinning ?
cc: @insraq
+1