aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Fuller <nfuller@google.com>2018-09-25 13:24:22 +0100
committerNeil Fuller <nfuller@google.com>2018-09-25 13:24:22 +0100
commitf78c7816cdcfdb54dc43ffdd5f90589a7b150ff0 (patch)
treec2059c17ecad6859b8e2f9c376984d3f4cc92f77
parent02588d3537372c990f6b3b0ddce9997827187ca9 (diff)
downloadjunit-params-f78c7816cdcfdb54dc43ffdd5f90589a7b150ff0.tar.gz
Explicitly compile using core_current, which are the public SDK APIs provided by the core libraries. Bug: 113148576 Test: build / treehugger Change-Id: I9412425e2aec33dd7a6d23ab18362e7f22234efa
-rw-r--r--Android.bp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Android.bp b/Android.bp
index ffc0621..fdc1eb4 100644
--- a/Android.bp
+++ b/Android.bp
@@ -17,12 +17,12 @@
//-------------------------------
// build a target jar
-java_library_static {
+java_library {
name: "junit-params",
host_supported: true,
hostdex: true,
srcs: ["src/main/java/**/*.java"],
- no_framework_libs: true,
+ sdk_version: "core_current",
static_libs: ["junit"],
}
@@ -45,7 +45,7 @@ java_test {
host_supported: true,
srcs: ["src/test/java/**/*.java"],
java_resource_dirs: ["src/test/resources"],
- no_framework_libs: true,
+ sdk_version: "core_current",
static_libs: [
"junit-params",
"junit-params-assertj-core",