Files
android-activity/native-activity/Cargo.toml
T
Robert Bragg c492fead0f App: Expose internal/ext/obb paths + sdk_version
This exposes the state from ANativeActivity and GameActivity in a
portable (Activity agnostic) way.
2022-05-28 02:53:59 +01:00

30 lines
614 B
TOML

[package]
name = "native-activity"
version = "0.1.0"
edition = "2021"
keywords = ["android", "ndk"]
readme = "../README.md"
license = "MIT OR Apache-2.0"
[dependencies]
log = "0.4"
jni-sys = "0.3"
ndk = { version = "0.6" }
ndk-sys = { version = "0.3" }
ndk-context = { version = "0.1" }
android-properties = "0.2"
lazy_static = "1.4.0"
num_enum = "0.5"
bitflags = "1.3"
libc = "0.2.84"
[build-dependencies]
cc = { version = "1.0", features = ["parallel"] }
[package.metadata.docs.rs]
targets = [
"aarch64-linux-android",
"armv7-linux-androideabi",
"i686-linux-android",
"x86_64-linux-android",
]