I'm very sorry to ask this very simple question, but it's more than half hour that I'm trying to find the last version of Android Volley.
Here: https://developer.android.com/training/volley/index.html I found
dependencies {
...
compile 'com.android.volley:volley:1.0.0'
}
But I'm sure that's not the last version. Using this answer did not help since it didn't show any updates for volley.
Thanks
volley (lib) is not deprecated. Why would it be? More importantly, if it works, why does it matter? Deprecated doesn't necessarily mean something is bad.
It means the server returned a 4xx error code. volley/src/main/java/com/android/volley/toolbox/BasicNetwork.java. Line 199 in d1a3d53. throw new ClientError(networkResponse); All reactions.
Volley has an inbuilt support for image loading.It is packaged with a loader a custom view called NetworkImageView which is specially designed to download and show images. On the other hand Retrofit does not provide any such feature, Other libraries such as picasso or glide is recommended to perform image loading.
Although Volley is a part of the Android Open Source Project(AOSP), Google announced in January 2017 that Volley will move to a standalone library. It manages the processing and caching of network requests and it saves developers valuable time from writing the same network call/cache code again and again.
As Farooq Khan pointed out, the current release is at https://github.com/google/volley/releases.
The latest version as of December 15, 2017 is "1.1.0".
so the gradle string for android apps would be
compile 'com.android.volley:volley:1.1.0'
Now you should use Implementation
instead of Compile
because in latest version of gradle compile
is now obsolete.
by the way, version 1.1.1 is also being prepared, as per https://github.com/google/volley/wiki/Release-Notes
The 1.0.0 is the official released version of android volley currently. It was released in Dec 2016. Here is the link of volley project.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With