These apps are in beta
- docker (for building the rust library)
yarn
nodejs
v12
- In the
zecwallet-mobile/rust/android
directory, run./build.sh
. This step will take a long time - From the root of the project, run
yarn install
- Run
npx react-native start
to start the dev server - Run
npx react-native run-android
to compile and install the app on an emulator/connected device. You can also open theandroid
directory in Android Studio as a project and hit the run button
- Install Rust
- Add the ios targets
rustup target add aarch64-apple-ios x86_64-apple-ios
cargo install cargo-lipo
cargo install cbindgen
sudo gem install cocoapods
to install cocoapods
- In the
zecwallet-mobile/rust/ios
directory, run./build.sh
. This step will take a long time. - In the
zecwallet-mobile/ios
directory, runpod install
- From the root of the project, run
yarn install
- Run
npx react-native start
to start the dev server - Run
npx react-native run-ios
to compile and install the app on an emulator/connected device. You can also open the.xcworkspace
project in XCode and run the app from XCode.