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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user