I want to make a jar file for android volley
I have cloned:
git clone https://android.googlesource.com/platform/frameworks/volley
then I tried :

I get Build failed.
Can you advice please.thank you.
I want to make a jar file for android volley
I have cloned:
git clone https://android.googlesource.com/platform/frameworks/volley
then I tried :

I get Build failed.
Can you advice please.thank you.
That repository doesn't always have the right structure. As for now I suppose the current version is android-5.1.1_r2 (May 11 2015). So to build:
git clone https://android.googlesource.com/platform/frameworks/volley
cd volley
git checkout b3b7e68
android update project -p .
ant jar
You'd need sdk/platform-tools/ and sdk/tools/ in path environment variable for android update command to work.
Or if you use gradle you can just add compile 'com.android.volley:volley:1.0.0' in your gradle build.