diff options
author | Colin Cross <ccross@android.com> | 2019-03-01 13:45:09 -0800 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2019-03-03 11:34:47 -0800 |
commit | 247e0cfaa463cac03f6fbef53589dc91c336f7c0 (patch) | |
tree | 198970138255de95aca207b2bcf7bb3ec02d8f9e /java/java.go | |
parent | afbddd8ddd1af593fbb4978f89d967d45b1a2c5c (diff) |
Don't add static libs resources to implemenation jars
Static dependency resources will already be in the resources jar
and the implementation and resource jar, they shouldn't be in
the implementation jar.
Test: m checkbuild
Change-Id: I4d4dab1d2e55e92ba9a95a66b246c721b9bf6410
Diffstat (limited to 'java/java.go')
-rw-r--r-- | java/java.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/java/java.go b/java/java.go index ecc360896..d230810de 100644 --- a/java/java.go +++ b/java/java.go @@ -1133,7 +1133,6 @@ func (j *Module) compile(ctx android.ModuleContext, extraSrcJars ...android.Path } jars = append(jars, deps.staticJars...) - jars = append(jars, deps.staticResourceJars...) manifest := j.overrideManifest if !manifest.Valid() && j.properties.Manifest != nil { |