Skip to main content

telar_platform_android/
lib.rs

1#[cfg(target_os = "android")]
2mod adpf;
3#[cfg(target_os = "android")]
4pub mod fonts;
5#[cfg(target_os = "android")]
6mod paths;
7#[cfg(target_os = "android")]
8pub mod platform;
9#[cfg(target_os = "android")]
10mod sys_prop;
11
12#[cfg(target_os = "android")]
13pub use adpf::AdpfSession;
14#[cfg(target_os = "android")]
15pub use android_activity::AndroidApp;
16#[cfg(target_os = "android")]
17pub use paths::AndroidPathsProvider;
18#[cfg(target_os = "android")]
19pub use platform::AndroidPlatform;
20#[cfg(target_os = "android")]
21pub use sys_prop::read_sys_prop;
22// The android backend reuses the shared winit window wrapper; kept under the AndroidWindow name for callers.
23#[cfg(target_os = "android")]
24pub use platform_winit::WinitWindow as AndroidWindow;