From 001f03a277efea3e270a94fb96d5108752bd1d09 Mon Sep 17 00:00:00 2001 From: Joshua Granick Date: Wed, 4 Jan 2017 15:46:24 -0800 Subject: [PATCH] Misread the chart, need to include ARMv7 for now on iOS --- include.xml | 6 +++--- lime/project/HXProject.hx | 2 +- lime/tools/platforms/IOSPlatform.hx | 6 ------ 3 files changed, 4 insertions(+), 10 deletions(-) diff --git a/include.xml b/include.xml index 4c6dc9708..11eb319f4 100644 --- a/include.xml +++ b/include.xml @@ -26,16 +26,16 @@ - + - + - + diff --git a/lime/project/HXProject.hx b/lime/project/HXProject.hx index 75d8e2001..9e6f47293 100644 --- a/lime/project/HXProject.hx +++ b/lime/project/HXProject.hx @@ -155,7 +155,7 @@ class HXProject { if (target == Platform.IOS) { - architectures = [ Architecture.ARM64 ]; + architectures = [ Architecture.ARMV7, Architecture.ARM64 ]; } else if (target == Platform.ANDROID) { diff --git a/lime/tools/platforms/IOSPlatform.hx b/lime/tools/platforms/IOSPlatform.hx index d3d989f22..0a93d98d6 100644 --- a/lime/tools/platforms/IOSPlatform.hx +++ b/lime/tools/platforms/IOSPlatform.hx @@ -210,12 +210,6 @@ class IOSPlatform extends PlatformTarget { } - if (project.config.getFloat ("ios.deployment", 8) < 7) { - - ArrayHelper.addUnique (architectures, Architecture.ARMV7); - - } - for (architecture in project.architectures) { switch (architecture) {