Android ART: "Could not find Dex offset for PC offset ..."

I recently stumbled upon this very strange error that causes a crash while developing the application. Here is a screenshot of logcat: LOGCAT

And here is the code for the function that supposedly crashes:

private static long Round(double d)
{
    return Math.round(d * 1000.0);
}

What can be done here? Should I report this issue?

EDIT: This may be related to the infinite recursion problem that I had because the problem seems to be gone ...

+4
source share

Source: https://habr.com/ru/post/1532573/


All Articles