I am communication with server through XML. The XML gone soo much huge that I am now getting OOM error on my Android phone.
I am using URLConnection.
while(null != (xmlResponse =
reader.readLine())) {
sb.append(xmlResponse);
}
reader.readLine() takes tooo much time and finally my app crash. Is there any better way to parse huge XML ??? or any lib ??