Skip to content

Commit

Permalink
Exclude R classes from kotlin maven artifacts.
Browse files Browse the repository at this point in the history
cl/323398368 changed the artifact names, but missed updating the rules that stripped the generated R class.

PiperOrigin-RevId: 323648883
  • Loading branch information
brettchabot committed Aug 4, 2020
1 parent 018e697 commit 33d8470
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ktx/core/java/androidx/test/core/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ axt_release_lib(
overlapping_jars = [
"//core/java/androidx/test/core:core_release_no_deps.jar",
],
remove_spec = "androidx/test/core/R[$$\\.]",
remove_spec = "androidx/test/core/ktx/R[$$\\.]|androidx/test/core/R[$$\\.]",
resource_files = glob(
["res/**/*"],
),
Expand Down
2 changes: 1 addition & 1 deletion ktx/ext/junit/java/androidx/test/ext/junit/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ axt_release_lib(
overlapping_jars = [
"//ext/junit/java/androidx/test/ext/junit:junit_release_no_deps.jar",
],
remove_spec = "androidx/test/ext/junit/R[$$\\.]",
remove_spec = "androidx/test/ext/junit/ktx/R[$$\\.]|androidx/test/ext/junit/R[$$\\.]",
resource_files = glob(
["res/**/*"],
),
Expand Down

0 comments on commit 33d8470

Please sign in to comment.