bubba-core 0.2.2

Core runtime for the Bubba mobile framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Build metadata exposed at runtime.

/// Bubba framework version.
pub const VERSION: &str = env!("CARGO_PKG_VERSION");

/// Minimum supported Android API level.
pub const MIN_API_LEVEL: u32 = 21;

/// Default Android ABI target.
pub const DEFAULT_TARGET: &str = "x86_64-linux-android";

/// All supported Android ABI targets.
pub const SUPPORTED_TARGETS: &[&str] = &[
    "aarch64-linux-android",
    "armv7-linux-androideabi",
    "x86_64-linux-android",
    "i686-linux-android",
];