From a40c92aa2717bb5c0606d083057bd3d5254287ad Mon Sep 17 00:00:00 2001
From: Kevin Brothaler <admin@digipom.com>
Date: Tue, 17 Jan 2017 21:35:27 -0400
Subject: [PATCH] Removed non-mandatory UIRequiredDeviceCapabilities
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

It’s not clear if these values are used or needed by the simulator. The doc only seems to mention arm values for the actual device:
https://developer.apple.com/library/content/documentation/General/Reference/InfoPlistKeyReference/Articles/iPhoneOSKeys.html#//apple_ref/doc/uid/TP40009252-SW3
---
 ci/ios/deploy_and_run_on_ios_simulator.rs | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/ci/ios/deploy_and_run_on_ios_simulator.rs b/ci/ios/deploy_and_run_on_ios_simulator.rs
index b36bef8d..97ef6343 100644
--- a/ci/ios/deploy_and_run_on_ios_simulator.rs
+++ b/ci/ios/deploy_and_run_on_ios_simulator.rs
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 //
-// This is a script to deploy and execute a binary on an x86-64 iOS simulator.
+// This is a script to deploy and execute a binary on an iOS simulator.
 // The primary use of this is to be able to run unit tests on the simulator and retrieve the results.
 //
 // To do this through Cargo instead, use Dinghy (https://github.com/snipsco/dinghy): 
@@ -36,11 +36,7 @@ fn package_as_simulator_app(crate_name: &str, test_binary_path: &Path) {
         "        <key>CFBundleExecutable</key>",
       &["        <string>", crate_name, "</string>"].join(""),
         "        <key>CFBundleIdentifier</key>",
-        "        <string>com.rust.unittests</string>",
-        "        <key>UIRequiredDeviceCapabilities</key>",
-        "        <array>",
-        "            <string>x86_64</string>",
-        "        </array>",
+        "        <string>com.rust.unittests</string>",        
         "    </dict>",
         "</plist>"].join("\n").into_bytes()).unwrap();
 }
-- 
GitLab