Skip to content

Commit a40c92a

Browse files
committed
Removed non-mandatory UIRequiredDeviceCapabilities
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
1 parent f8e1276 commit a40c92a

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

ci/ios/deploy_and_run_on_ios_simulator.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010
//
11-
// This is a script to deploy and execute a binary on an x86-64 iOS simulator.
11+
// This is a script to deploy and execute a binary on an iOS simulator.
1212
// The primary use of this is to be able to run unit tests on the simulator and retrieve the results.
1313
//
1414
// 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) {
3636
" <key>CFBundleExecutable</key>",
3737
&[" <string>", crate_name, "</string>"].join(""),
3838
" <key>CFBundleIdentifier</key>",
39-
" <string>com.rust.unittests</string>",
40-
" <key>UIRequiredDeviceCapabilities</key>",
41-
" <array>",
42-
" <string>x86_64</string>",
43-
" </array>",
39+
" <string>com.rust.unittests</string>",
4440
" </dict>",
4541
"</plist>"].join("\n").into_bytes()).unwrap();
4642
}

0 commit comments

Comments
 (0)