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