I need to locate an error in my code that shows up in the logcat as this:
07-09 02:42:02.251 939-1229/com.boolbalabs.petlinx E/SyncException﹕ com.google.gson.JsonSyntaxException: java.lang.NumberFormatException: Expected an int but was 1501262120526111 at line 1 column 101693
As you can see it is at line 1, column 101693, which leads me to believe the code file has been minified at run time. It also does not say the file name, so I'm not sure what class file to look at either. Is there a way to unminify the code files so they say the line number and column number that I can view in my own code?
Please also see this question that I asked yesterday which is a similar issue, but the error doesn't even say any line number or column