summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2018-06-27 11:00:12 -0700
committerColin Cross <ccross@android.com>2018-06-27 11:03:58 -0700
commit40c286776f9c3e802a47dbec5bfbf3418bdcb1ac (patch)
treecbc3ef3260d4a281e0dc86a38da88b8b219f1b87
parent7c605681423b7f75c7fd512bd6b34f0bb49b2c90 (diff)
downloadvoip-40c286776f9c3e802a47dbec5bfbf3418bdcb1ac.tar.gz
Mark installable jars with installable: true
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: I985ee592a1012858634cf2eecbeba560a1256cc9
-rw-r--r--Android.bp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 0428c01..3dd8f09 100644
--- a/Android.bp
+++ b/Android.bp
@@ -28,6 +28,7 @@ filegroup {
java_library {
name: "voip-common",
+ installable: true,
srcs: [
"src/java/**/*.java",
"src/java/**/I*.aidl",