Update default iOS deployment to 6.0 and remove unnecessary CFBundleIcon data now that we use asset catalogs for icons

This commit is contained in:
Joshua Granick
2015-01-17 21:16:18 -08:00
parent d2a2ed5cd2
commit c0f1416535
3 changed files with 2 additions and 14 deletions

View File

@@ -8,12 +8,6 @@
<string>::APP_TITLE::</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIconFile</key>
<string>Icon.png</string>
<key>CFBundleIcons</key>
<dict/>
<key>CFBundleIcons~ipad</key>
<dict/>
<key>CFBundleIdentifier</key>
<string>::APP_PACKAGE::</string>
<key>CFBundleInfoDictionaryVersion</key>

View File

@@ -8,12 +8,6 @@
<string>::APP_TITLE::</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIconFile</key>
<string>Icon.png</string>
<key>CFBundleIcons</key>
<dict/>
<key>CFBundleIcons~ipad</key>
<dict/>
<key>CFBundleIdentifier</key>
<string>::APP_PACKAGE::</string>
<key>CFBundleInfoDictionaryVersion</key>

View File

@@ -154,7 +154,7 @@ class IOSPlatform extends PlatformTarget {
if (project.config.getString ("ios.device", "universal") == "universal" || project.config.getString ("ios.device") == "iphone") {
if (project.config.getInt ("ios.deployment", 5) < 5) {
if (project.config.getInt ("ios.deployment", 6) < 5) {
ArrayHelper.addUnique (architectures, Architecture.ARMV6);
@@ -197,7 +197,7 @@ class IOSPlatform extends PlatformTarget {
context.ARMV7S = armv7s;
context.ARM64 = arm64;
context.TARGET_DEVICES = switch (project.config.getString ("ios.device", "universal")) { case "iphone": "1"; case "ipad": "2"; default: "1,2"; }
context.DEPLOYMENT = project.config.getInt ("ios.deployment", 5);
context.DEPLOYMENT = project.config.getInt ("ios.deployment", 6);
if (project.config.getString ("ios.compiler") == "llvm" || project.config.getString ("ios.compiler", "clang") == "clang") {