diff --git a/android/README.md b/android/README.md index 46053ad..e918a79 100644 --- a/android/README.md +++ b/android/README.md @@ -7,8 +7,18 @@ The chain is: `eframe_template` used in `eframe_template_android` used in `efram ## Building the android app ```sh +cargo install cargo-ndk +rustup target add aarch64-linux-android armv7-linux-androideabi x86_64-linux-android i686-linux-android + +# install android ndk and sdk manually - you can follow steps on https://golb.n4n5.dev/android + + # will compile the cdylib and copy it to the android app make +# run your android emulator + +# this will install the app on the emulator make run-on-device + ```