Questions tagged [acra]

ACRA is a free library for automatically reporting crash or debug information from an Android application to some server over the network.

ACRA, which stands for Application Crash Report for Android, is a popular and free library that enables an Android application to automatically send a crash report or debug information, using Google doc is used as a typical "hello world" target. Google Doc is no longer recommended for production use, however the related open-source project Acralyzer provides a backend reports-analysis webapp built on a full open stack. A variety of other reporting connectors (e.g., HTTP POST, E-mail, etc.) are also available. ACRA also supports rolling-your-own reporting sender.

More information is available at the ACRA website.

277 questions
0
votes
2 answers

How do I provide a full stack trace with an ACRA error report in Android?

I have an app where I use ACRA for error reporting. I recently decided to send a caught exception with ErrorReporter, and it works, albeit without any kind of stack trace. All I get is the usual system dump info, and I really need the stack traces…
Cornholio
  • 985
  • 1
  • 5
  • 22
0
votes
2 answers

Android. ACRA. Is putCustomData thread safe

I can't seem to find the answer to this question I'm having: Is the method from the ACRA library ... ACRA.getErrorReporter().putCustomData(Name, Content); ... thread safe? I'd like to call it from two different threads and I'm not sure if i should…
AndreiBogdan
  • 10,858
  • 13
  • 58
  • 106
0
votes
1 answer

ACRA: sometimes dialog report and other times silent report

What I want to do: Get feedback on my Android app from within the app itself. What I've done: I've just integrated the latest version of ACRA (4.4) to my Android App. It has silent reports on crashes as the default behaviour What I want help…
Dheeraj Bhaskar
  • 18,633
  • 9
  • 63
  • 66
0
votes
1 answer

How to locally analyse ACRA crash report

Using ACRA for a few days now and sending reports to my MongoDb backend HTTPS server, is there some tool I can use on my PC to analyse crash data. I was thinking I could handle this locally and not use any of the Bugsense, Zubhium, HockeyApp,…
Erik
  • 5,039
  • 10
  • 63
  • 119
0
votes
1 answer

emergency, acra with google spreadsheets

I have to decide tomorrow how to do with my crash reports, as too many reports are saved in my spreadsheets. And I don't wanna switch to bugsense or sth. else, because I'm not ready to pay for it? Is there some tricks (like google script) to auto…
thecr0w
  • 2,148
  • 4
  • 33
  • 59
0
votes
1 answer

How to view ACRA exceptions with GoogleDocs in a user-friendly way?

I'm using ACRA with GoogleDocs. Everything works fine, but I think the output isn't displayed in a user-friendly way. One exception takes the whole monitor size. I want to see a single exception similar to the "Form/Show summary" view. Did I missed…
qd0r
  • 118
  • 10
0
votes
1 answer

ACRA is crashing

I am using ACRA for crash reporting, but all of a sudden it is causing me some problems. My application won't start, I get a crash report notification, but tapping on it does nothing. Opening logcat, I can see the following entries: 11-20…
MrGibbage
  • 2,644
  • 5
  • 39
  • 50
0
votes
2 answers

acra: don't send "android id"

My acra bug reports show up in BugSense with a field "Android ID". I tested this, and it remains constant between application installations. we do not want to send any information that can be used to track the user. Is there a way to avoid sending…
Jeffrey Blattman
  • 22,176
  • 9
  • 79
  • 134
0
votes
0 answers

How to log stack trace from all of the threads using ACRA

everybody! Now I'm trying to use ACRA for sending crash reports on my e-mail. I have the next ACRA settings: @ReportsCrashes( formKey = "", mailTo = "developer@email.com", additionalSharedPreferences = { …
ddmytrenko
  • 796
  • 7
  • 16
0
votes
1 answer

ACRA shows the notification then no dialog on notification click

I have been working for a long with ACRA in silent mode. Everything is fine and this is an awesome lib. But today, I just wanted to use the notification method for a client. I used it like this: in MyApplication @ReportsCrashes(formKey =…
Waza_Be
  • 39,407
  • 49
  • 186
  • 260
0
votes
1 answer

Adding acra.jar to the /libs folder

I am trying to use ACRA in my helloacra android applications. I read this article . There it is written "Add the acra-4.2.3.jar from the archive (acra-4.2.3/build) in the libs folder" But the file is being added to the "referenced libraries" instead…
Guy Cohen
  • 689
  • 1
  • 9
  • 25
0
votes
1 answer

acra logcat missing lines

I did what the ACrA for android website saidin terms of sendig logcat information to mygoogle spredsheet. I was able to receive the log intended however I only get the last 10 lines instead of 150 that i specified. Is acra.supposed to send me 150…
Snake
  • 14,228
  • 27
  • 117
  • 250
0
votes
1 answer

Android - How to tell in ACRA whether the error happened on the simularor?

I am getting some strange reports about errors and I am wondering whether it happened during testing. Where do I look in my ACRA reports to see whether the device was the simulator? Thanks!!
Genadinik
  • 18,153
  • 63
  • 185
  • 284
0
votes
1 answer

Android acra exception

I just set up ACRA for exception reporting on Android, and on my local simulator, I get this exception: and here is my class: package com.problemio; import android.app.Application; import org.acra.*; import org.acra.annotation.*; …
GeekedOut
  • 16,905
  • 37
  • 107
  • 185
0
votes
1 answer

testdroid recorder Vs acra

I recently read about testdroid, to track user bugs of my apps, and also I used ACRA that is pretty cool, but I would like to know from users which is better and if is really worthy to pay for testdroid?
Pedro Teran
  • 1,200
  • 3
  • 17
  • 43
1 2 3
18
19