LogCat indicates the line number (line 2793) in which the error occurred, but there is no such line in the source code!

How to correctly navigate through LogCat and find the actual string in the source code with an error?

PS This LogCat is taken from the Test Report from the Google Play Console (testing takes place on the Google Play server, on the local computer all the rules)

... FATAL EXCEPTION: ControllerMessenger Process: ..., PID: 11569 java.lang.RuntimeException: Unable to start activity ComponentInfo{ru.../ru...Module1}: java.lang.NullPointerException: Attempt to invoke virtual method 'boolean java.lang.String.contains(java.lang.CharSequence)' on a null object reference at ndroid.app.ActivityThread.performLaunchActivity(ActivityThread.java:2793) at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2864) at android.app.ActivityThread.-wrap12(ActivityThread.java) ... 
  • You seem to have a standard NPE. o A specific line should be highlighted in blue in the logs and it is clickable. - Yuriy SPb ♦
  • Alas, this is LogCat from Test Report from Google Play Console - user_MGU
  • Well ... If this is all the log that is, then it remains only to try to simulate the environment in which there was a fall. Those. take the same OS version, the same locale, the same device, run and try to play. - Yuriy SPb ♦
  • In the source code of Android, you will not find your mistake anyway. If this is not the entire frame, then see below until you see the name of your class. - woesss
  • Yuriyy spb thanks! ... Or maybe you can with pom. Any debug seals this place to calculate? I realized that the error in the line with: .contains (... But I have several such places !!! - user_MGU

0