From 86497f8604e206172311b35f69ce69b49f0c4fd9 Mon Sep 17 00:00:00 2001 From: Matthew Raymer Date: Tue, 11 Nov 2025 21:19:29 -0800 Subject: [PATCH] fix(ios): correct SceneDelegate class name in Info.plist Fixed SceneDelegate class name configuration: Info.plist Fix: - Changed from $(PRODUCT_MODULE_NAME).SceneDelegate to SceneDelegate - PRODUCT_MODULE_NAME variable wasn't resolving correctly - SceneDelegate class couldn't be loaded, causing black screen Fixes: - Black screen: SceneDelegate now loads correctly - ViewController creation: SceneDelegate can now instantiate ViewController - WebView initialization: App initialization chain now works Result: SceneDelegate should now load and create ViewController, allowing WebView to initialize --- test-apps/ios-test-app/App/App/Info.plist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-apps/ios-test-app/App/App/Info.plist b/test-apps/ios-test-app/App/App/Info.plist index 9283bc3..9e2d460 100644 --- a/test-apps/ios-test-app/App/App/Info.plist +++ b/test-apps/ios-test-app/App/App/Info.plist @@ -109,7 +109,7 @@ UISceneConfigurationName Default Configuration UISceneDelegateClassName - $(PRODUCT_MODULE_NAME).SceneDelegate + SceneDelegate