android_clipboard 0.1.0

Access Android clipboard
Documentation
1
2
3
4
5
6
7
8
9
10
Access text in the Android clipboard from Rust using a simple API.

```rust
use android_clipboard::{get_text, set_text};

fn hello() {
    set_text("Hello, Android clipboard!".to_string());
    println!("{}", get_text().unwrap());
}
```