Skip to main content

coreshift_core/android/
mod.rs

1// This Source Code Form is subject to the terms of the Mozilla Public
2// License, v. 2.0. If a copy of the MPL was not distributed with this
3// file, You can obtain one at https://mozilla.org/MPL/2.0/
4
5//! Android-specific surface.
6//!
7//! Groups the Android-only primitives under one namespace:
8//!
9//! - [`property`] — Android system property access (`get`, `set`, `find`,
10//!   `read`, `serial`, `wait`).
11//! - [`dex`] — resolved Binder transaction codes for the Android system
12//!   services.
13//!
14//! These modules are Android-only in practice; the Binder API itself lives in
15//! [`crate::binder`].
16
17pub mod dex;
18pub mod property;