btf21
btf21

Reputation: 79

Finding an error in Android Studio

enter image description hereI have this error in the logcat:

07-08 18:41:35.397  29820-30298/com.boolbalabs.petlinx E/SyncException﹕ java.lang.ClassCastException: java.lang.Long cannot be cast to java.lang.Integer

Am I able to locate where this is occurring in the code from this information?

Upvotes: 1

Views: 2750

Answers (1)

Tim
Tim

Reputation: 43314

If you double click the error, Android Studio will jump to the relevant file, and highlight the line on which the error occurs.

Upvotes: 1

Related Questions