Go to file
WildCat 7cd4c3bd14 Fix android build script 2022-03-22 21:25:33 +08:00
.github/workflows cd hello 2022-03-22 21:13:06 +08:00
.vscode Update with legacy API demo to say greetings 2022-01-24 10:50:05 +08:00
hello Fix android build script 2022-03-22 21:25:33 +08:00
.gitattributes Android example (#2) 2022-03-16 08:40:51 +08:00
.gitignore Inital commit 2022-01-08 14:15:24 +08:00
LICENSE Inital commit 2022-01-08 14:15:24 +08:00
Makefile Fix Android Actions (#3) 2022-03-22 09:54:24 +08:00
README.md Update build scripts 2022-03-22 20:42:07 +08:00

README.md

Fullstack Examples of UniFFI-rs

Full documentation of the UniFFI crates can be found here.

Working in progress

Prerequisites

Rust

Please read https://www.rust-lang.org/tools/install.

Android

  1. JDK 11.x, Android SDK and NDK, Android Studio is optional. For more details, please visit .github/workflows/build.yml.
  2. Install Rust toolchains for Android: make prepare-android

iOS

  1. Latest Xcode (13.x)
  2. Rust toolchains for iOS: make prepare-apple or rustup target add aarch64-apple-ios-sim --toolchain nightly && rustup target add aarch64-apple-ios x86_64-apple-ios. Check installaion:
    $ rustup target list --installed | grep ios
    aarch64-apple-ios
    aarch64-apple-ios-sim
    x86_64-apple-ios
    
    Please note that aarch64-apple-ios-sim requries the nightly toolchain (https://doc.rust-lang.org/nightly/rustc/platform-support/aarch64-apple-ios-sim.html).
  3. Install uniffi-bindgen: cargo install uniffi_bindgen, details: https://mozilla.github.io/uniffi-rs/tutorial/Prerequisites.html

Get Started

Hello

Please read hello/README.md.

License

MIT