You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add bindings for querying and setting Android System Properties
The Android System Property API might not be very useful for most
apps even though it still provides a read-only view of all properties
but no rights to set any. Since this is accessible via the NDK this
crate should provide a clean and complete (including UB-free) wrapper
implementation either way.
This requires bumping `thiserror` to `1.0.29` which introduced proper
impl bounds in https://togithub.com/dtolnay/thiserror/pull/148 such that
no `Debug` bound needs to be written anywhere that `GetError<>` is used.
As a second advantage, this error type can still be used with `FromStr`
implementations whose `Err` type does not implement `Error`/`Debug`,
those just cannot be `.unwrap()`ped.
0 commit comments