Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the last version of Android Volley? [closed]

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

like image 978
Stefano Giacone Avatar asked Mar 26 '17 08:03

Stefano Giacone


People also ask

Is android volley deprecated?

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.

What is android volley ClientError?

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.

What is difference between volley and retrofit in android?

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.

Is volley an open source?

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.


2 Answers

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

like image 138
FractalBob Avatar answered Sep 22 '22 04:09

FractalBob


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.

like image 42
Farooq Khan Avatar answered Sep 20 '22 04:09

Farooq Khan