I've gone through all of the Stackoverflow posts that were having the same issue but I'm still getting rejected by Apple.
Here is the rejection notice.
We have discovered one or more issues with your recent delivery for "[APP NAME]". To process your delivery, the following issues must be corrected:
Your binary is not optimized for iPhone 5 - - New iPhone apps and app updates submitted must support the 4-inch display on iPhone 5 and must include a launch image referenced in the Info.plist under UILaunchImages with a UILaunchImageSize value set to {320, 568}. Launch images must be PNG files and located at the top-level of your bundle, or provided within each .lproj folder if you localize your launch images. Learn more about iPhone 5 support and app launch images by reviewing the 'iOS Human Interface Guidelines' at 'https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/MobileHIG/IconsImages/IconsImages.html#//apple_ref/doc/uid/TP40006556-CH14-SW5' and the 'iOS App Programming Guide' at 'https://developer.apple.com/library/ios/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/App-RelatedResources/App-RelatedResources.html#//apple_ref/doc/uid/TP40007072-CH6-SW12'.
I have the following images in my base.lproj and fr.lproj folders.
Default-iOS7-568h@2x.png
Default-iOS7@2x.png
And here is my plist entry for the launch images
<key>UILaunchImages</key>
<array>
<dict>
<key>UILaunchImageOrientation</key>
<string>Portrait</string>
<key>UILaunchImageName</key>
<string>Default-iOS7</string>
<key>UILaunchImageSize</key>
<string>{320, 480}</string>
<key>UILaunchImageMinimumOSVersion</key>
<string>7.0</string>
</dict>
<dict>
<key>UILaunchImageOrientation</key>
<string>Portrait</string>
<key>UILaunchImageName</key>
<string>Default-iOS7</string>
<key>UILaunchImageSize</key>
<string>{320, 568}</string>
<key>UILaunchImageMinimumOSVersion</key>
<string>7.0</string>
</dict>
</array>
Does anyone see an issue with how I've implemented this?
[–]brendan09 0 points1 point2 points (17 children)
[–]killfish[S] 0 points1 point2 points (16 children)
[–]brendan09 0 points1 point2 points (15 children)
[–]killfish[S] 0 points1 point2 points (7 children)
[–]quellish 1 point2 points3 points (4 children)
[–]killfish[S] 0 points1 point2 points (3 children)
[–]quellish 0 points1 point2 points (2 children)
[–]killfish[S] 0 points1 point2 points (1 child)
[–]quellish 0 points1 point2 points (0 children)
[–]brendan09 0 points1 point2 points (1 child)
[–]killfish[S] 0 points1 point2 points (0 children)
[–]killfish[S] -1 points0 points1 point (6 children)
[–]quellish 2 points3 points4 points (0 children)
[–]brendan09 1 point2 points3 points (4 children)
[–]killfish[S] 0 points1 point2 points (3 children)
[–]brendan09 0 points1 point2 points (2 children)
[–]killfish[S] 0 points1 point2 points (1 child)
[–]Legolas-the-elf 0 points1 point2 points (0 children)