From d5ddb6e20ecf1e214d20a1948272ef25dfb3cf5a Mon Sep 17 00:00:00 2001 From: Matthew Raymer Date: Tue, 11 Nov 2025 20:20:02 -0800 Subject: [PATCH] fix(ios): add content src to config.xml for HTML loading Added missing content src tag to config.xml: Content Source: - Added tag - Tells Capacitor/Cordova which HTML file to load - Required for WebView to display the app Fixes: - Black screen: WebView now knows which HTML file to load - Missing start page: Capacitor can now find index.html - WebView initialization: Proper content source configured Result: WebView should now load index.html from public directory --- test-apps/ios-test-app/App/App/config.xml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test-apps/ios-test-app/App/App/config.xml b/test-apps/ios-test-app/App/App/config.xml index 1b1b0e0..71a41e4 100644 --- a/test-apps/ios-test-app/App/App/config.xml +++ b/test-apps/ios-test-app/App/App/config.xml @@ -1,6 +1,5 @@ - - + \ No newline at end of file