diff --git a/.travis.sh b/.travis.sh
index 3d521cf..d6ece94 100755
--- a/.travis.sh
+++ b/.travis.sh
@@ -195,7 +195,7 @@ then
export VISIONOS_SIM_ID=$(xcrun simctl create My-apple-vision-pro com.apple.CoreSimulator.SimDeviceType.Apple-Vision-Pro $VISIONOS_RUNTIME_ID)
xcrun simctl boot $VISIONOS_SIM_ID
- tests_sequence_unstable_target ${VISIONOS_SIM_ID} auto-watchos-aarch64-sim
+ tests_sequence_unstable_target ${VISIONOS_SIM_ID} auto-visionos-aarch64-sim
xcrun simctl delete $VISIONOS_SIM_ID
fi
rustup default stable
diff --git a/dinghy-lib/src/apple/xcode.rs b/dinghy-lib/src/apple/xcode.rs
index 419306d..5ca94fe 100644
--- a/dinghy-lib/src/apple/xcode.rs
+++ b/dinghy-lib/src/apple/xcode.rs
@@ -49,7 +49,10 @@ pub fn add_plist_to_app(
writeln!(plist, "WKWatchOnly")?;
}
Some(AppleSimulatorType::Visionos) => {
- todo!()
+ writeln!(
+ plist,
+ "UIDeviceFamily 7 "
+ )?;
}
}
writeln!(plist, r#""#)?;