aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2018-07-12 10:38:52 -0700
committerColin Cross <ccross@android.com>2018-07-12 10:38:52 -0700
commit730cc2668f7a8e9ef614b7bccf4b1586e77f9e90 (patch)
tree5e9c2034eaa0a7613fe83207f6bbb55c00f5aa60
parent8922af5540d7e7587de647df3875b3fac244f0a4 (diff)
downloadjacoco-730cc2668f7a8e9ef614b7bccf4b1586e77f9e90.tar.gz
Mark installable jars with installable: trueandroid-p-preview-5android-n-iot-release-smart-display-r2
Most jars don't need to be installed on the device. Instead of using java_library and java_library_static to distinguish between them make java_library and java_library_static identical and use installable: true to identify the few jars that need to be dexed and installed on the device. Bug: 110885583 Test: m checkbuild Change-Id: Ief76c5d49eb2e534b86813196a961a2d6e759474
-rw-r--r--Android.bp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index a4c103ca..e220dcbe 100644
--- a/Android.bp
+++ b/Android.bp
@@ -20,6 +20,7 @@
// to be used in the SDK where apps can use the official jacoco release.
java_library {
name: "jacocoagent",
+ installable: true,
srcs: [
"org.jacoco.core/src/**/*.java",