We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d1a120 commit 80a6d08Copy full SHA for 80a6d08
rules/impl.bzl
@@ -107,6 +107,8 @@ def _run_android_lint(
107
for check in enable_checks:
108
args.add("--enable-check", check)
109
for dep in _utils.list_or_depset_to_list(deps):
110
+ if not dep.path.endswith(".aar") and not dep.path.endswith(".jar"):
111
+ continue
112
args.add("--classpath", dep)
113
inputs.append(dep)
114
if android_lint_enable_check_dependencies:
0 commit comments