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
  • 1,936
  • 3
  • 24
  • 47

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,078
  • 15
  • 42
  • 48
FractalBob
  • 2,674
  • 3
  • 23
  • 36
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
  • 76,639
  • 19
  • 130
  • 241
Farooq Khan
  • 562
  • 4
  • 15