Last active
August 29, 2015 14:07
-
-
Save dhrrgn/2bea8fa0ccdb1d35182e to your computer and use it in GitHub Desktop.
Phonegap Config for iPhone 6 and 6+
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- rest of config here --> | |
<!-- iOS 8 Override Config to support iPhone 6/6+ screen size --> | |
<gap:config-file platform="ios" parent="UILaunchImages" overwrite="true"> | |
<array> | |
<!-- iPhone 4s --> | |
<dict> | |
<key>UILaunchImageMinimumOSVersion</key> | |
<string>8.0</string> | |
<key>UILaunchImageName</key> | |
<string>Default-480h</string> | |
<key>UILaunchImageOrientation</key> | |
<string>Portrait</string> | |
<key>UILaunchImageSize</key> | |
<string>{320, 480}</string> | |
</dict> | |
<!-- iPhone 5/s/c --> | |
<dict> | |
<key>UILaunchImageMinimumOSVersion</key> | |
<string>8.0</string> | |
<key>UILaunchImageName</key> | |
<string>Default-568h</string> | |
<key>UILaunchImageOrientation</key> | |
<string>Portrait</string> | |
<key>UILaunchImageSize</key> | |
<string>{320, 568}</string> | |
</dict> | |
<!-- iPhone 6 --> | |
<dict> | |
<key>UILaunchImageMinimumOSVersion</key> | |
<string>8.0</string> | |
<key>UILaunchImageName</key> | |
<string>Default-667h</string> | |
<key>UILaunchImageOrientation</key> | |
<string>Portrait</string> | |
<key>UILaunchImageSize</key> | |
<string>{375, 667}</string> | |
</dict> | |
<!-- iPhone 6+ --> | |
<dict> | |
<key>UILaunchImageMinimumOSVersion</key> | |
<string>8.0</string> | |
<key>UILaunchImageName</key> | |
<string>Default-736h</string> | |
<key>UILaunchImageOrientation</key> | |
<string>Portrait</string> | |
<key>UILaunchImageSize</key> | |
<string>{414, 736}</string> | |
</dict> | |
<!-- iPad / Mini --> | |
<dict> | |
<key>UILaunchImageMinimumOSVersion</key> | |
<string>8.0</string> | |
<key>UILaunchImageName</key> | |
<string>Default-1024h</string> | |
<key>UILaunchImageOrientation</key> | |
<string>Portrait</string> | |
<key>UILaunchImageSize</key> | |
<string>{768, 1024}</string> | |
</dict> | |
<!-- iPad Retina --> | |
<dict> | |
<key>UILaunchImageMinimumOSVersion</key> | |
<string>8.0</string> | |
<key>UILaunchImageName</key> | |
<string>Default-2048h</string> | |
<key>UILaunchImageOrientation</key> | |
<string>Portrait</string> | |
<key>UILaunchImageSize</key> | |
<string>{1536, 2048}</string> | |
</dict> | |
</array> | |
</gap:config-file> | |
<gap:splash src="res/screen/ios/[email protected]" gap:platform="ios" width="750" height="1334" /> | |
<gap:splash src="res/screen/ios/[email protected]" gap:platform="ios" width="1242" height="2208" /> | |
<!-- rest of config here --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@dhrrgn that will force to have iOS 8 or is it compatible with an iPhone 4 with iOS 7?