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

Community
  • 1
  • 1
Stefano Giacone
  • 2,016
  • 3
  • 27
  • 50

2 Answers2

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

Umair
  • 6,366
  • 15
  • 42
  • 50
FractalBob
  • 3,225
  • 4
  • 29
  • 40
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.

Code-Apprentice
  • 81,660
  • 23
  • 145
  • 268
Farooq Khan
  • 592
  • 4
  • 15