You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tooling/cli/src/mobile/ios/dev.rs
+12-1Lines changed: 12 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,8 @@ use std::{
36
36
sync::OnceLock,
37
37
};
38
38
39
+
constPHYSICAL_IPHONE_DEV_WARNING:&str = "To develop on physical phones you need the `--host` option (not required for Simulators). See the documentation for more information: https://v2.tauri.app/develop/#development-server";
40
+
39
41
#[derive(Debug,Clone,Parser)]
40
42
#[clap(
41
43
about = "Run your app in development mode on iOS",
@@ -367,6 +369,8 @@ fn run_dev(
367
369
let out_dir = bin_path.parent().unwrap();
368
370
let _lock = flock::open_rw(out_dir.join("lock").with_extension("ios"),"iOS")?;
0 commit comments