We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa7c075 commit 0d08185Copy full SHA for 0d08185
example/ios/MendixNativeExample/AppDelegate.swift
@@ -18,7 +18,9 @@ class AppDelegate: RCTAppDelegate {
18
SessionCookieStore.restore()
19
20
guard let bundleUrl = bundleURL() else {
21
- fatalError("Unable to load JavaScript bundle.")
+ let message = "No script URL provided. Make sure the metro packager is running or you have embedded a JS bundle in your application bundle."
22
+ NativeErrorHandler().handle(message: message, stackTrace: [])
23
+ return false
24
}
25
26
MxConfiguration.update(from:
0 commit comments