From fa0fea7f752ebc86706a6bc6e8183307279bd64a Mon Sep 17 00:00:00 2001 From: Matthew Raymer Date: Tue, 11 Nov 2025 19:50:01 -0800 Subject: [PATCH] fix(ios): add missing storyboard files for test app Created missing storyboard files required by Xcode build: Main.storyboard: - Minimal storyboard referencing CAPBridgeViewController - Required for Capacitor app initialization - Matches standard Capacitor iOS app structure LaunchScreen.storyboard: - Launch screen storyboard for app startup - Simple view controller with safe area layout - Referenced in Info.plist as UILaunchStoryboardName Fixes: - Build error: 'Build input file cannot be found: Main.storyboard' - Build error: 'Build input file cannot be found: LaunchScreen.storyboard' - Xcode project expects these files for storyboard-based UI Result: Build should now complete successfully --- .../App/Base.lproj/LaunchScreen.storyboard | 35 +++++++++++++++++++ .../App/App/Base.lproj/Main.storyboard | 20 +++++++++++ 2 files changed, 55 insertions(+) create mode 100644 test-apps/ios-test-app/App/App/Base.lproj/LaunchScreen.storyboard create mode 100644 test-apps/ios-test-app/App/App/Base.lproj/Main.storyboard diff --git a/test-apps/ios-test-app/App/App/Base.lproj/LaunchScreen.storyboard b/test-apps/ios-test-app/App/App/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..89fac56 --- /dev/null +++ b/test-apps/ios-test-app/App/App/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test-apps/ios-test-app/App/App/Base.lproj/Main.storyboard b/test-apps/ios-test-app/App/App/Base.lproj/Main.storyboard new file mode 100644 index 0000000..e0cfe44 --- /dev/null +++ b/test-apps/ios-test-app/App/App/Base.lproj/Main.storyboard @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + +