This is the example app of mopro. You can use the following commands to build native bindings for your iOS and/or Android app.
📚 To learn more about mopro, visit: https://zkmopro.org
To set up and build bindings, follow these steps.
git clone https://github.com/zkmopro/mopro
cd mopro/cli
cargo install --path .
Navigate to the Mopro example app directory, then build the bindings with:
mopro build
To generate templates tailored to your target platform, use:
mopro create
For advanced usage, you can manually run Rust commands to build in either debug or release mode.
- Debug Mode:
cargo run --bin ios # Debug mode
- Release Mode:
CONFIGURATION=release cargo run --bin ios # Release mode
- Debug Mode:
cargo run --bin android # Debug mode
- Release Mode:
CONFIGURATION=release cargo run --bin android # Release mode