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
This commit is contained in:
@@ -109,7 +109,7 @@
|
||||
<key>UISceneConfigurationName</key>
|
||||
<string>Default Configuration</string>
|
||||
<key>UISceneDelegateClassName</key>
|
||||
<string>$(PRODUCT_MODULE_NAME).SceneDelegate</string>
|
||||
<string>SceneDelegate</string>
|
||||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
|
||||
Reference in New Issue
Block a user