aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Davidson <jpd@google.com>2020-05-05 18:21:53 -0700
committerJeff Davidson <jpd@google.com>2020-05-06 09:58:24 -0700
commit03f9929f4b6f090957dbdd961d40c7df2d844b9a (patch)
tree2c065484c53fa840f91235ed530af2afc1a7e9f1
parentec9c6e0d0e8e5e947017e24c270ca9f13487f937 (diff)
downloadvolley-03f9929f4b6f090957dbdd961d40c7df2d844b9a.tar.gz
Update minSdkVersion/compileSdkVersion used for Volley builds.
This syncs with build.gradle and will keep the build consistent once https://github.com/google/volley/pull/335 is merged. Change-Id: Icae708d2bdf8d384f4a935879b6520dba2dfeb0d
-rw-r--r--Android.bp11
1 files changed, 8 insertions, 3 deletions
diff --git a/Android.bp b/Android.bp
index e101494..c13de29 100644
--- a/Android.bp
+++ b/Android.bp
@@ -17,9 +17,14 @@
java_library {
name: "volley",
- sdk_version: "17",
+ sdk_version: "28",
+ min_sdk_version: "8",
srcs: ["src/main/java/**/*.java"],
- // Only needed at compile-time.
- libs: ["androidx.annotation_annotation"],
+ libs: [
+ // Only needed at compile-time.
+ "androidx.annotation_annotation",
+
+ "org.apache.http.legacy",
+ ],
}