From 4656cf50b51c681b9b67c995c7e920e56d2efbb6 Mon Sep 17 00:00:00 2001 From: Caio Faustino Date: Sun, 2 Jan 2022 20:25:18 +0100 Subject: [PATCH] Add step to install uniffi-bindgen on README This step exists in bdk-ffi readme, but is missing in this repo, and build.sh fails without it. --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 9e429a7..6dcf971 100644 --- a/README.md +++ b/README.md @@ -69,6 +69,11 @@ val newAddress = wallet.getNewAddress() ```sh rustup target add x86_64-linux-android aarch64-linux-android armv7-linux-androideabi i686-linux-android ``` +1. Install `uniffi-bindgen` + ```sh + cargo install uniffi_bindgen + ``` + See the [UniFFI User Guide](https://mozilla.github.io/uniffi-rs/) for more info 1. Install Android SDK and Build-Tools for API level 30+ 1. Setup `$ANDROID_SDK_ROOT` and `$ANDROID_NDK_HOME` path variables (which are required by the build scripts), for example (NDK major version 21 is required):