1 //! # Android NDK
2 //!
3 //! Bindings to the Android NDK.
4 //!
5 //! Currently has bindings:
6 //!  * `InputEvent`, `KeyEvent`, and `MotionEvent`, in the `event` module
7 //!  * `Looper`, in the `looper` module
8 //!  * `InputQueue`, in the `input_queue` module
9 //!  * `AssetManager`, `AssetDir`, and `Asset`, in the `asset` module
10 //!  * `NativeActivity`, in the `native_activity` module
11 //!  * `Configuration`, in the `configuration` module
12 #![cfg_attr(
13     feature = "native_app_glue",
14     doc = "  * `native_app_glue`'s `AndroidApp`, in the `android_app` module"
15 )]
16 #![warn(missing_debug_implementations)]
17 
18 pub mod asset;
19 pub mod bitmap;
20 pub mod configuration;
21 pub mod event;
22 pub mod input_queue;
23 pub mod looper;
24 pub mod native_activity;
25 pub mod native_window;
26 
27 pub mod aaudio;
28 pub mod hardware_buffer;
29 pub mod media;
30 pub mod trace;
31