rsproperties 0.3.0

Pure Rust implementation of Android's property system with cross-platform support, real-time monitoring, and Linux emulation
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[test]
fn simple_test() {
    assert_eq!(2 + 2, 4);
    println!("This is a simple test");
}

#[test]
fn test_constants() {
    assert_eq!(rsproperties::PROP_VALUE_MAX, 92);
    println!("Constants test passed");
}