diff options
author | Paul Duffin <paulduffin@google.com> | 2020-06-24 12:10:42 +0100 |
---|---|---|
committer | Paul Duffin <paulduffin@google.com> | 2020-06-24 13:04:15 +0100 |
commit | 4e77284ab45ff1e49b8ca7993516c32152467d10 (patch) | |
tree | d5e8c09bb8ba21acea15662a3839fa84131e2c99 /java/java.go | |
parent | 63a89ef82fe8424c73f3274b8c18d30d2a3268ce (diff) |
Include resources in sdk snapshot of java library impl
Bug: 159607838
Test: m nothing
Change-Id: Ie7ddbffc3957f832abfadb27292c436e8e5dcbf3
Diffstat (limited to 'java/java.go')
-rw-r--r-- | java/java.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/java.go b/java/java.go index 7a4255745..7d32c3406 100644 --- a/java/java.go +++ b/java/java.go @@ -44,7 +44,7 @@ func init() { PropertyName: "java_libs", }, func(j *Library) android.Path { - implementationJars := j.ImplementationJars() + implementationJars := j.ImplementationAndResourcesJars() if len(implementationJars) != 1 { panic(fmt.Errorf("there must be only one implementation jar from %q", j.Name())) } |