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
Or you can simply do
ant jar
in your cloned volley git project. You should now see volley.jar in the volley projects bin folder. Copy this to you Android Studio's app\libs folder. Then add following under dependencies section of Module level build.gradle file -
compile files('libs/volley.jar')
And you should be good import and use the library classes in your project,