aboutsummaryrefslogtreecommitdiff
path: root/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorAnonymous <no-reply@google.com>2019-03-28 01:11:33 +0900
committerJeff Davidson <jpd@google.com>2019-03-27 16:38:00 +0000
commite926546a739acd231feeb85d9bd7a9f2cec0fefb (patch)
tree64996a4d0fe89a8562b0b18c02b0b092c9f86f5b /src/main/AndroidManifest.xml
parent356bcc337d8b543da5b1b580a65f97a1969c114c (diff)
downloadvolley-e926546a739acd231feeb85d9bd7a9f2cec0fefb.tar.gz
Import of Volley from GitHub to AOSP.
Android.bp is updated to use androidx.annotation instead of android.support.annotation to be consistent with the new Gradle dependencies. - ddbc32c04921df0973baadeee50f8d3099b12e14 Migrate to AndroidX (#251) by Jaewoong Eum <skydoves@naver.com> - 95a6796c40f570a723a73d9360dddbd0994ed1d4 Pre-sized array is not recommended in HotSpot based JVMs ... by Jaewoong Eum <skydoves@naver.com> - d8239ceeb22f4cfcc18f580ca2425cbfc3425548 Fix SNAPSHOT build deployment. (#250) by Jeff Davidson <jpd236@cornell.edu> - bc81fa5e46588b0a22a0c1bb5e315bbf1555dbd0 Update build (#248) by Matthew Zavislak <elevenfive@users.noreply.github.com> - 4c1a94566b6c4e6e8a2c6f0e31b2769a38467e0a Setting a default image, or an error image, will clear pr... by Ammar Aijazi <aaijazi@users.noreply.github.com> GitOrigin-RevId: ddbc32c04921df0973baadeee50f8d3099b12e14 Change-Id: Ib4c2b69235fa0edb78252b771cc1b1cc7f416d16
Diffstat (limited to 'src/main/AndroidManifest.xml')
-rw-r--r--src/main/AndroidManifest.xml6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main/AndroidManifest.xml b/src/main/AndroidManifest.xml
index 16eec15..da8d33e 100644
--- a/src/main/AndroidManifest.xml
+++ b/src/main/AndroidManifest.xml
@@ -1,10 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
package="com.android.volley"
android:versionCode="1"
android:versionName="1.0" >
- <uses-sdk android:minSdkVersion="8" />
+ <!-- Keep in sync with build.gradle -->
+ <uses-sdk
+ android:minSdkVersion="8"
+ tools:ignore="GradleOverrides" />
<application />