Skip to content

Commit

Permalink
Enable autoloads for rules_android
Browse files Browse the repository at this point in the history
Downstream build: https://buildkite.com/bazel/bazel-at-head-plus-downstream/builds/4164
Downstream build shows that rules_android isn't quite yet ready, but I think it's better to enable the flag for Bazel 8 now, than to do an incompatible change later.

PiperOrigin-RevId: 683271234
Change-Id: I4b1a8c5fe087f8dbf0742440d6af3c436bbf26d2
  • Loading branch information
comius committed Oct 9, 2024
1 parent e00fa72 commit f9062fc
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,10 @@ private static SymbolRedirect renamedSymbolRedirect(

static {
try {
requiredVersions = ImmutableMap.of("protobuf", Version.parse("29.0-rc1"));
requiredVersions =
ImmutableMap.of(
"protobuf", Version.parse("29.0-rc1"), //
"rules_android", Version.parse("0.6.0-rc1"));
} catch (ParseException e) {
throw new IllegalStateException(e);
}
Expand Down

0 comments on commit f9062fc

Please sign in to comment.