I wanna use the google\'s volley library
I am using Android Studio and I know how to add .jar libraries.
But I could not create a .jar library with the voll
Updating Warpzit's answer for Android Studio 1.3.2 (differences in bold)
(update: appears to be the same for Android 2.0)
Open settings.gradle (find in root) and add (or verify this is included):
include ':app', ':volley'
Now go to your build.gradle in your project and add the dependency:
compile project(":volley")