HttpAsyncRequest request = new HttpAsyncRequest(
MapsActivity.this,
Constant.BaseUrl,
HttpAsyncRequest.RequestType.GET,
new MarkerParser(), listener);
request.addParam("array",arr); //this is not working
request.execute();
I want to send arraylist of latlng to the server i am using http request but we can only send string through that . How to send arraylist of latlng ?