From e70d17b6ca8edd6e56e24045dcd311dc68fe2cc0 Mon Sep 17 00:00:00 2001 From: n4n5 Date: Thu, 5 Sep 2024 11:46:51 +0200 Subject: [PATCH] add to guide --- android/README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) 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 + ```