android-properties 0.2.2

Rust-based Android properties wrapper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use android_properties::{setprop, AndroidProperty};

const HELLO_WORLD_PROPERTY: &str = "hello.world";

fn main() {
    setprop(HELLO_WORLD_PROPERTY, "initial value").expect("Cannot set android property");
    let hello_world = AndroidProperty::new(HELLO_WORLD_PROPERTY);
    println!("Initial property: {}", hello_world);

    setprop(HELLO_WORLD_PROPERTY, "refreshed value").expect("Cannot set android property");
    println!("Refreshed property: {}", hello_world);
}