1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-26 14:49:06 -04:00
Files
egui/examples/hello_android
Emil Ernerfeldt a12d18d9bd Replace chrono with jiff (#8008)
`jiff` is more modern, and seem to be where the ecosystem is heading.
2026-03-24 13:58:21 +01:00
..
2026-03-24 13:58:21 +01:00

Hello world example for Android.

Use cargo-apk to build and run. Requires a patch to workaround an upstream bug.

One-time setup:

cargo install \
    --git https://github.com/parasyte/cargo-apk.git \
    --rev 282639508eeed7d73f2e1eaeea042da2716436d5 \
    cargo-apk

Build and run:

# Run on android
cargo apk run -p hello_android --lib

# Run on your desktop
cargo run -p hello_android