From 92b5b94bf6b8d79c4b14bd1f9505e7d62d9381f2 Mon Sep 17 00:00:00 2001 From: Laurent Sansonetti Date: Wed, 5 Nov 2014 15:18:25 +0100 Subject: [PATCH] revert enabling arm64 by default --- lib/motion/project/template/ios/config.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/motion/project/template/ios/config.rb b/lib/motion/project/template/ios/config.rb index ee9d3d1b..2965b08f 100644 --- a/lib/motion/project/template/ios/config.rb +++ b/lib/motion/project/template/ios/config.rb @@ -52,8 +52,11 @@ module Motion; module Project; def archs @archs ||= begin + # By default, do not build with 64-bit, as it's still experimental. # No longer build for armv7s by default. archs = super + archs['iPhoneSimulator'].delete('x86_64') + archs['iPhoneOS'].delete('arm64') archs['iPhoneOS'].delete('armv7s') archs end