diff --git a/legacy/templates/iphone/PROJ/PROJ-Info.plist b/legacy/templates/iphone/PROJ/PROJ-Info.plist
index 342faf59b..61ca41408 100644
--- a/legacy/templates/iphone/PROJ/PROJ-Info.plist
+++ b/legacy/templates/iphone/PROJ/PROJ-Info.plist
@@ -8,12 +8,6 @@
::APP_TITLE::
CFBundleExecutable
${EXECUTABLE_NAME}
- CFBundleIconFile
- Icon.png
- CFBundleIcons
-
- CFBundleIcons~ipad
-
CFBundleIdentifier
::APP_PACKAGE::
CFBundleInfoDictionaryVersion
diff --git a/templates/iphone/PROJ/PROJ-Info.plist b/templates/iphone/PROJ/PROJ-Info.plist
index 342faf59b..61ca41408 100644
--- a/templates/iphone/PROJ/PROJ-Info.plist
+++ b/templates/iphone/PROJ/PROJ-Info.plist
@@ -8,12 +8,6 @@
::APP_TITLE::
CFBundleExecutable
${EXECUTABLE_NAME}
- CFBundleIconFile
- Icon.png
- CFBundleIcons
-
- CFBundleIcons~ipad
-
CFBundleIdentifier
::APP_PACKAGE::
CFBundleInfoDictionaryVersion
diff --git a/tools/platforms/IOSPlatform.hx b/tools/platforms/IOSPlatform.hx
index 55ea78999..338102931 100644
--- a/tools/platforms/IOSPlatform.hx
+++ b/tools/platforms/IOSPlatform.hx
@@ -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") {