android-intent

crate documentation

```rust use androidactivity::AndroidApp; use androidintent::{withcurrentenv, Action, Extra, Intent};

[no_mangle]

fn androidmain(androidapp: AndroidApp) { withcurrentenv(|env| { Intent::new(env, Action::Send) .withtype("text/plain") .withextra(Extra::Text, "Hello World!") .intochooser() .start_activity() .unwrap() }); } ```