summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Fuller <nfuller@google.com>2018-09-25 13:02:36 +0100
committerNeil Fuller <nfuller@google.com>2018-09-25 13:08:46 +0100
commit779b921de38b2fb926f7ad11aed12edbda6afb9e (patch)
tree44eb778a1b9c798afe3b306be30067a9e5eb84cc
parentf8d1d27b97b57d6a4ea8f242230b5ee2f3522612 (diff)
downloadnist-sip-779b921de38b2fb926f7ad11aed12edbda6afb9e.tar.gz
Make nist-sip compile against public SDK APIs
nist-sip is the only dependency of the ext.jar that wasn't explicitly building against public SDK APIs. This change enables us to enforce use of public SDKs in Android's ext.jar. Bug: 113148576 Test: make ext Change-Id: I7d38d35f9069f60af68b64e3bac816476780b39c
-rw-r--r--Android.bp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Android.bp b/Android.bp
index 81afdc9..46a4cc9 100644
--- a/Android.bp
+++ b/Android.bp
@@ -15,7 +15,7 @@
java_library_static {
name: "nist-sip",
srcs: ["java/**/*.java"],
- no_framework_libs: true,
+ sdk_version: "core_current",
errorprone: {
javacflags: [
"-Xep:MissingOverride:OFF", // Ignore missing @Override.