android-rust-cli 0.3.2

A CLI tool for generating Android Rust JNI templates in a single command
1
2
3
4
5
6
7
8
9
10
pub mod completions;
pub mod doctor;
pub mod list;
pub mod new;

pub use completions::generate_completions;
pub use doctor::run_doctor;
pub use list::list_templates;
pub use new::init_project;
pub use new::new_project;