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
This commit is contained in:
Matthew Raymer
2025-11-11 19:54:09 -08:00
parent a330f25e21
commit 308e249620

View File

@@ -10,6 +10,10 @@
<key>CFBundleIdentifier</key>
<string>com.timesafari.dailynotification</string>
<!-- Executable Name -->
<key>CFBundleExecutable</key>
<string>App</string>
<!-- Bundle Name -->
<key>CFBundleName</key>
<string>DailyNotification Test App</string>