Skip to content

Commit

Permalink
Update iOS docs for v0.6 (#297)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthunz authored Aug 15, 2024
1 parent 91b3f4e commit 864e4eb
Showing 1 changed file with 5 additions and 12 deletions.
17 changes: 5 additions & 12 deletions docs-src/0.5/en/reference/mobile/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,8 @@ Windows:
#### IOS

First, install the rust IOS targets:

```sh
rustup target add aarch64-apple-ios x86_64-apple-ios aarch64-apple-ios-sim
```

To develop on IOS, you will need to [install XCode](https://apps.apple.com/us/app/xcode/id497799835).

> Note: On Apple silicon you must run Xcode on rosetta. Goto Application > Right Click Xcode > Get Info > Open in Rosetta.
> If you are using M1, you will have to run `cargo build --target x86_64-apple-ios` instead of `cargo apple build` if you want to run in simulator.
### Setting up your project
Expand All @@ -100,11 +93,11 @@ Next, we need to modify our dependencies to include dioxus and ensure the right

```toml
[dependencies]
anyhow = "1.0.56"
log = "0.4.11"
dioxus = { version = "0.5", features = ["mobile"] }
wry = "0.35.0"
tao = "0.25.0"
anyhow = "1.0"
log = "0.4"
wry = "0.37"
tao = "0.26"
dioxus = { version = "0.6", features = ["mobile"] }
```

Finally, we need to add a component to renderer. Replace the wry template in your `lib.rs` file with this code:
Expand Down

0 comments on commit 864e4eb

Please sign in to comment.