summaryrefslogtreecommitdiff
path: root/java/java.go
diff options
context:
space:
mode:
author Paul Duffin <paulduffin@google.com> 2023-05-31 17:51:33 +0100
committer Paul Duffin <paulduffin@google.com> 2023-06-01 15:26:40 +0100
commit5b7035f850612aecfd67b7099e62ce82659b3041 (patch)
tree7a119ec5c68eb76b5aeb57950a6ed7ed9667968f /java/java.go
parentb2cd6f69632f9b21dda9b3b59a6ea081e57860fc (diff)
Explicitly specify `--api-class-resolution api` for metalava
Previously, `--api-class-resolution api` was the default if that option was not specified but the other change in this topic is switching it to `--api-class-resolution api:classpath` to match the behavior in AndroidX. This change explicitly specifies the option needed by Soong's use of metalava. Bug: 285140653 Test: m checkapi Change-Id: Ief3c7f9dfdfa946f21cb048a579ec90309fb350f
Diffstat (limited to 'java/java.go')
-rw-r--r--java/java.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/java/java.go b/java/java.go
index aa9f936d0..5bc378b0c 100644
--- a/java/java.go
+++ b/java/java.go
@@ -1728,6 +1728,10 @@ func metalavaStubCmd(ctx android.ModuleContext, rule *android.RuleBuilder,
FlagWithArg("--hide ", "InvalidNullabilityOverride").
FlagWithArg("--hide ", "ChangedDefault")
+ // Force metalava to ignore classes on the classpath when an API file contains missing classes.
+ // See b/285140653 for more information.
+ cmd.FlagWithArg("--api-class-resolution ", "api")
+
return cmd
}