Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Volley framework

After watching this year's Google IO session: "Google I/O 2013 - Volley: Easy, Fast Networking for Android"

I've decided to replace my current RESTful implementation in favor of using Volley. As suggested I have cloned the repository from googlecode into my project and included it as a library project.

Everything works great and this library is indeed awesome, but how could I tell when it's time to update it when there are no official releases only commits on master branch? Who is in charge to announce which versions are stable and which aren't? Is there any official blog where I could get updates on this framework?

Thanks

like image 447
woot Avatar asked Jul 14 '13 07:07

woot


People also ask

What is a volley in Android?

Volley is an HTTP library that makes networking for Android apps easier and most importantly, faster. Volley is available on GitHub. Volley offers the following benefits: Automatic scheduling of network requests. Multiple concurrent network connections.

Why do we use volley in Android?

Volley is an HTTP library that makes networking very easy and fast, for Android apps. It was developed by Google and introduced during Google I/O 2013. It was developed because there is an absence in Android SDK, of a networking class capable of working without interfering with the user experience.


1 Answers

how could I tell when it's time to update it when there are no official releases only commits on master branch?

Presumably, you need review the changes yourself and determine if you want them.

Who is in charge to announce which versions are stable and which aren't?

In theory, Google. In practice, probably nobody at present.

Is there any official blog where I could get updates on this framework?

Not at present. It is theoretically possible that announcements will appear on the Android Developers blog, but there has been no discussion of Volley there to date.

What may happen is that some small group of developers will take it upon themselves to provide Volley "releases", perhaps via Maven, where they will use some back-door channels into Google to try to determine when such releases should be made.

Personally, I will use other solutions, like Retrofit, Picasso, or maybe Ion, where at least I have a snowball's chance in Ft. Lauderdale of knowing when it is time to upgrade my app.

like image 68
CommonsWare Avatar answered Sep 23 '22 21:09

CommonsWare