I issue some problems with my Apps code to read JSON files. So my App downloads the json files from my server and then uses this AsyncTask to read them.
This works fine for the smaller json file (about 2KB) but the big one (which is about 1.3MB in size) only loads the first lines.
I am not certainly sure what is causing the Problem, I tought about Strings not being able to store that much characters but then I read here that the maximum of Numbers is around 2 billion (which should not be exeeded by that json File). I hope you can help me! Thanks in advance!