aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Humesky <ahumesky@google.com>2021-02-17 12:22:41 -0500
committerGitHub <noreply@github.com>2021-02-17 12:22:41 -0500
commitbd8fc648167ff573f1415a80cc4a72c98fc62335 (patch)
tree1235b70b3a0d7150512ecc273c4db0294c76d6ca
parentb5b99d3d42a0a931e436c5af1a32211865fba2f7 (diff)
downloadbazelbuild-rules_android-bd8fc648167ff573f1415a80cc4a72c98fc62335.tar.gz
Update README.md
Use build_bazel_rules_android in the workspace toolchain registration example to match the example http_archive.
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index de6f2f1..6cba04f 100644
--- a/README.md
+++ b/README.md
@@ -16,11 +16,11 @@ Bazel 4.0.0 or newer and the following flags are necessary to use these rules:
Also, register the Android toolchains in the `WORKSPACE` file with:
```
register_toolchains(
- "@rules_android//toolchains/android:android_default_toolchain",
- "@rules_android//toolchains/android_sdk:android_sdk_tools",
+ "@build_bazel_rules_android//toolchains/android:android_default_toolchain",
+ "@build_bazel_rules_android//toolchains/android_sdk:android_sdk_tools",
)
```
-(Assuming that the Android rules repository in the `WORKSPACE` file is named `rules_android`.)
+(Assuming that the Android rules repository in the `WORKSPACE` file is named `build_bazel_rules_android`.)
## Overview