ok sir
it seem that the http service on the android can get the big data, but cannot assign it to a string, since the size of the cache as i debug is around 9.89MB
the next question is : how to process the json data via stream not as string?
this is the method that return the data from your HttpUtils :
'Get methods should be called only after the JobDone event or the UrlDone event.
Sub GetString(URL As String) As String
If IsSuccess(URL) = False Then
Log("Task not completed successfully.")
Return ""
End If
Return File.GetText(HttpUtilsService.TempFolder, SuccessfulUrls.Get(URL)) 'it return as string, can i return it as stream and process the json data from it?
End Sub