Skip to content

Commit

Permalink
Bug with Android Manifest being added from dependent libraries (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
EdbertChan authored Apr 11, 2024
1 parent 6d1a120 commit 80a6d08
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions rules/impl.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ def _run_android_lint(
for check in enable_checks:
args.add("--enable-check", check)
for dep in _utils.list_or_depset_to_list(deps):
if not dep.path.endswith(".aar") and not dep.path.endswith(".jar"):
continue
args.add("--classpath", dep)
inputs.append(dep)
if android_lint_enable_check_dependencies:
Expand Down

0 comments on commit 80a6d08

Please sign in to comment.