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
Pass trailing x run -- arguments to launch command
If you want to pass string "extras" into an Android intent via `am
start`, call `x run ... -- -e extraKey "extra string"` (and similar
for other types like `--ez key bool` for booleans, or `-d URI` for data
URIs). [All arguments listed by `am help` under the `start` command]
(including the `INTENT` specification) are supported.
On the host, this passes the arguments as-is to the running executable,
similar to `cargo run .. -- <launch_args>`.
For iOS, these are passed to [`idevicedebug run`].
[All arguments listed by `am help` under the `start` command]: https://developer.android.com/tools/adb#am
[`idevicedebug run`]: https://manpages.debian.org/testing/libimobiledevice-utils/idevicedebug.1.en.html
0 commit comments