diff options
author | 2025-01-13 22:37:06 -0800 | |
---|---|---|
committer | 2025-01-13 22:37:06 -0800 | |
commit | 9eb3f2e1779a6c925c7109636133a47cdf4b5d99 (patch) | |
tree | 7876c6b27a253c9282e5caf76036b4b5d998d71b /android/config.go | |
parent | 3fa68093a5e366437fcfe8feb84428a9d2a9eea1 (diff) | |
parent | 8ec5f61a0293330dc75e1a68a4a887dcd0842a5a (diff) |
Merge "Add property Optimize.Keep_runtime_invisible_annotations" into main
Diffstat (limited to 'android/config.go')
-rw-r--r-- | android/config.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/android/config.go b/android/config.go index 87aacd5cb..407156df6 100644 --- a/android/config.go +++ b/android/config.go @@ -2175,6 +2175,10 @@ func (c *config) UseTransitiveJarsInClasspath() bool { return c.productVariables.GetBuildFlagBool("RELEASE_USE_TRANSITIVE_JARS_IN_CLASSPATH") } +func (c *config) UseR8OnlyRuntimeVisibleAnnotations() bool { + return c.productVariables.GetBuildFlagBool("RELEASE_R8_ONLY_RUNTIME_VISIBLE_ANNOTATIONS") +} + func (c *config) UseR8StoreStoreFenceConstructorInlining() bool { return c.productVariables.GetBuildFlagBool("RELEASE_R8_STORE_STORE_FENCE_CONSTRUCTOR_INLINING") } |