diff --git a/ci/ios/deploy_and_run_on_ios_simulator.rs b/ci/ios/deploy_and_run_on_ios_simulator.rs
index b36bef8dbbca470be27045409430a6f9d7bece00..97ef63437d7f1fec6ba46665e7d42f781c1f608a 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();
 }