when i provide the url given below , i am getting the proper rsults but
String baseUrl = "https://maps.googleapis.com/maps/api/place/search/xml?location=";
String last="&radius=20000&types=school&sensor=false&key=";
URL = baseUrl + latitude + "," + longitude + last + API_KEY ;
when i am trying to use multiple types like :
school | university
it showing forced closed....EX
String baseUrl = "https://maps.googleapis.com/maps/api/place/search/xml?location=";
String last="&radius=20000&types=school|university&sensor=false&key=";
URL = baseUrl + latitude + "," + longitude + last + API_KEY ;
what mistake i am doing...