In my Application i wants to make volley API call 10 or more times, but i need to hit the request one after another, i am using for loop to make 10 request call,is there any option to hit the request in queue ?
Here is the code,
for(int i = 0;i<10;i++) {
serverAPICall();
}