Misread the chart, need to include ARMv7 for now on iOS

This commit is contained in:
Joshua Granick
2017-01-04 15:46:24 -08:00
parent 5ea3552923
commit 001f03a277
3 changed files with 4 additions and 10 deletions

View File

@@ -155,7 +155,7 @@ class HXProject {
if (target == Platform.IOS) {
architectures = [ Architecture.ARM64 ];
architectures = [ Architecture.ARMV7, Architecture.ARM64 ];
} else if (target == Platform.ANDROID) {

View File

@@ -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) {