Skip to content

0.1.0

Choose a tag to compare

@github-actions github-actions released this 23 Jun 17:29
· 7 commits to main since this release
Immutable release. Only release title and notes can be modified.
4e6781a

What's Changed

Initial release!

Setup docs: https://github.com/keith/hermetic_android_toolchains#usage

New Contributors

Full Changelog: https://github.com/keith/hermetic_android_toolchains/commits/0.1.0

MODULE.bazel Snippet

bazel_dep(name = "hermetic_android_toolchains", version = "0.1.0")

android = use_extension("@hermetic_android_toolchains//:extensions.bzl", "android")
android.sdk(
    version = "35",
    build_tools_version = "35.0.0",
)
android.ndk(version = "r25c")
use_repo(android, "androidsdk", "androidndk")

# Make @rules_android's @androidsdk labels resolve to the hermetic SDK.
rules_android_sdk = use_extension("@rules_android//rules/android_sdk_repository:rule.bzl", "android_sdk_repository_extension")
override_repo(rules_android_sdk, "androidsdk")

register_toolchains("@androidndk//:all", "@androidsdk//:all")