Go to file
imWildCat 63eed40b97 fix 2023-09-20 21:01:19 -07:00
.github/workflows use latest main of uniffi 2023-08-20 16:27:12 -07:00
.vscode Update with legacy API demo to say greetings 2022-01-24 10:50:05 +08:00
hello fix 2023-09-20 21:01:19 -07:00
uniffi-bindgen add workspace 2023-08-20 12:37:24 -07:00
.gitattributes Android example (#2) 2022-03-16 08:40:51 +08:00
.gitignore add workspace 2023-08-20 12:37:24 -07:00
Cargo.lock update add async 2023-09-20 21:00:46 -07:00
Cargo.toml update add async 2023-09-20 21:00:46 -07:00
LICENSE Inital commit 2022-01-08 14:15:24 +08:00
Makefile fix toolchain install 2023-08-09 07:33:57 -07:00
README.md Upgrade to latest uniffi (0.23.0) (#7) 2023-06-08 22:59:42 -07: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 (14.3)
  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