https://github.com/rust-mobile/android-intent
https://github.com/rust-mobile/android-intent
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rust-mobile/android-intent
- Owner: rust-mobile
- Created: 2023-02-08T11:00:48.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-08-17T23:44:03.000Z (10 months ago)
- Last Synced: 2025-12-09T17:17:21.739Z (6 months ago)
- Language: Rust
- Size: 23.4 KB
- Stars: 17
- Watchers: 4
- Forks: 7
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# android-intent
[](https://crates.io/crates/android-intent)
[](https://docs.rs/android-intent)
```rust
use android_activity::AndroidApp;
use android_intent::{with_current_env, Action, Extra, Intent};
#[no_mangle]
fn android_main(_android_app: AndroidApp) {
with_current_env(|env| {
Intent::new(env, Action::Send)
.with_type("text/plain")
.with_extra(Extra::Text, "Hello World!")
.into_chooser()
.start_activity()
.unwrap()
});
}
```