From 308e2496207c37a0b8b97ede0c36c86ee3f1a987 Mon Sep 17 00:00:00 2001 From: Matthew Raymer Date: Tue, 11 Nov 2025 19:54:09 -0800 Subject: [PATCH] fix(ios): add missing CFBundleExecutable to Info.plist Added CFBundleExecutable key required for iOS app installation: CFBundleExecutable: - Set to 'App' (matches PRODUCT_NAME from build settings) - Required by iOS to identify the executable binary - Without this, app installation fails with 'missing or invalid CFBundleExecutable' Fixes: - Installation error: 'Bundle has missing or invalid CFBundleExecutable in its Info.plist' - App can now be installed on simulator successfully Result: App installation should now complete successfully --- test-apps/ios-test-app/App/App/Info.plist | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test-apps/ios-test-app/App/App/Info.plist b/test-apps/ios-test-app/App/App/Info.plist index 3dfcc49..9283bc3 100644 --- a/test-apps/ios-test-app/App/App/Info.plist +++ b/test-apps/ios-test-app/App/App/Info.plist @@ -10,6 +10,10 @@ CFBundleIdentifier com.timesafari.dailynotification + + CFBundleExecutable + App + CFBundleName DailyNotification Test App