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

2

16

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

Sexagesimal answered 26/3, 2017 at 8:55 Comment(0)
P
22

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

Predictor answered 12/12, 2017 at 19:52 Comment(2)
Not sure why someone downvoted this, but I think this is the correct answer as of nowSexagesimal
Version 1.1.1 is available now. So, use: implementation 'com.android.volley:volley:1.1.1'Blubber
B
9

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.

Buckhound answered 26/3, 2017 at 9:14 Comment(2)
@Predictor See the releases here: github.com/google/volley/releasesBuckhound
Thanks, Farooq. Your answer should be marked as the correct one.Predictor

© 2022 - 2024 — McMap. All rights reserved.