skip to Main Content

I am facing an issue when ever I am trying to install app on iOS 17.4 app getting crashed on Launching. Crash occurred in FIRDLJavaScriptExecutor file and I also update the firebase pods to latest version. Even also getting same crashed.

enter image description here

Getting this error.

2

Answers


  1. I am also experiencing the same issue on iOS version 17.4.1. Since it doesn’t occur when not debugging, it seems to be a bug in Xcode.

    — Part of FIRDLJavaScriptExecutor from FirebaseDynamicLinks —

    NSString *htmlContent = [NSString stringWithFormat:@"<html><head><script>%@</script></head></html>", _script];
    
    _wkWebView = [[WKWebView alloc] init];
    _wkWebView.navigationDelegate = self;
    [_wkWebView loadHTMLString:htmlContent baseURL:nil];
    
    Login or Signup to reply.
  2. Disabling Malloc Scribble in the scheme seems like a temporary fix for this until it gets resolved with a new version of Xcode.

    Screenshot

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search