Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 397 Bytes

File metadata and controls

21 lines (17 loc) · 397 Bytes

iOS Development Workflow

Tauri uses Xcode generated project to build and run iOS apps. Update the tauri.conf.json file with your development team ID.

{
  "iOS": {
    "minimumSystemVersion": "13.0",
    "developmentTeam": "your_team_id"
  }
}

And then run the following commands:

$ rm -rf src-tauri/gen/apple
$ cargo tauri ios init
$ pnpm gim
$ cargo tauri ios dev