commit | 479321dc34debf9e87a3566c252fdd4728a675c7 | [log] [tgz] |
---|---|---|
author | Jiyong Park <jiyong@google.com> | Mon Dec 16 11:47:12 2019 +0900 |
committer | Jiyong Park <jiyong@google.com> | Mon Dec 16 15:59:54 2019 +0900 |
tree | df9754563e9ac181f96eeb76484b34904e644cc7 | |
parent | 0f41daf682c76f99585c7e6594840bcb4e950bf6 [diff] [blame] |
java libs that isn't installable is gracefully rejected ... rather than causing soong panic. Bug: 146197571 Test: m (apex_test amended) Change-Id: I3679a4e3041527533c1c05d54f3aa514abd6095b
diff --git a/apex/apex.go b/apex/apex.go index be86d80..0aaba91 100644 --- a/apex/apex.go +++ b/apex/apex.go
@@ -472,7 +472,7 @@ } func (af *apexFile) Ok() bool { - return af.builtFile != nil || af.builtFile.String() == "" + return af.builtFile != nil && af.builtFile.String() != "" } type apexBundle struct {