3

I'm using ACRA lib for getting crashes of my app.

It work fine (I receive crash-reports on my server with stackTrace and logCat info). But in my IDE (Eclipse) in logCat I see only this line, when I throw exception:

E/ACRA(18776): ACRA caught a IndexOutOfBoundsException exception for com.example.myapp. Building report.

So I able to read stackTrace of catched error only on my server... And, of course, if I disable ACRA initialization in my app I can see stackTrace of throwing error.

Also I read this, but it do not help me, as I already have "verbose" filter in logCat in my IDE (Eclipse).

UPD_0:

As I understand, this issue caused by Android version >=5 (Lolipop). I test on Nesus 4 (ver 5.1) and on LG g3s, ver.5.0.2. On thses devices there are no stackTrace of catched error in IDE's logCat. On devices with Android <5 (Lolipop) everything is all write and I can see error detailes in logCat of Eclipse.

UPD_1:

If read logs from cmd (adb logcat) everithing is all write. So there is problem with Eclipse...

Community
  • 1
  • 1
mohax
  • 4,435
  • 2
  • 38
  • 85
  • And what happens if you use logcat direclty (outside of Eclipse)? http://developer.android.com/tools/help/logcat.html – William Apr 21 '15 at 01:37
  • @William, I try using logCat from cmd and everithing is all wright - I can see error's detailed logs with tag "ACRA". So it's a problem with Eclipse?.. – mohax Apr 21 '15 at 10:51
  • I have the same problem in android studio. have you found a solution yet ? – milad zahedi Jun 19 '16 at 06:46
  • @miladzahedi, as I remember, there was a problem with old version of ARCA. So I just use the lastest one and problem was solved – mohax Jun 19 '16 at 09:57

1 Answers1

0

If it's showing in the adb logcat, then it's a problem with either Eclipse or with your Eclipse config.

William
  • 20,150
  • 8
  • 49
  • 91