This project is aim to bridge Rust code in Android. For more explanation you can watch this youtube video
Before to run this project make sure in your machine is already installed Rust, then you can follow these steps
- Install NDK and CMake in your Android Studio by going to Settings > Language & Frameworks > Android SDK > SDK Tools.
- Run these commands to enables cross-compile Rust code for Android devices with ARM64 and x84 64bit processors.
rustup target add aarch64-linux-android rustup target add x86_64-linux-android
- Run this command and finally you can run the project
./gradlew clean; ./gradlew build
