From 3f256be37117ca6116f7d731cb874599bab54a5f Mon Sep 17 00:00:00 2001 From: nab138 Date: Mon, 9 Feb 2026 09:26:00 -0500 Subject: [PATCH] add custom machine name into example --- examples/minimal/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/minimal/src/main.rs b/examples/minimal/src/main.rs index 0ab8b1e..0f326fa 100644 --- a/examples/minimal/src/main.rs +++ b/examples/minimal/src/main.rs @@ -125,6 +125,7 @@ async fn main() { let mut sideloader = SideloaderBuilder::new(dev_session, apple_id.to_string()) .team_selection(TeamSelection::Prompt(team_selection_prompt)) .max_certs_behavior(MaxCertsBehavior::Prompt(cert_selection_prompt)) + .machine_name("isideload-demo".to_string()) .build(); let result = sideloader.install_app(&provider, app_path).await;