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
3
votes
2 answers

How to configure Acralyzer?

I've installed Acralyzer using this tutorial and got following parameters for integrating Acra into my Android app: httpMethod = Method.PUT, reportType = Type.JSON, formUri =…
Glory to Russia
  • 17,289
  • 56
  • 182
  • 325
3
votes
4 answers

Send email on application crash in silent mode using ACRA

I followed the instructions on setting up the ACRA to send the emails using- Sending Reports By Email However can't figured out how to silently send the email to the developer on crash without any email client to choose by the user. …
sjain
  • 23,126
  • 28
  • 107
  • 185
3
votes
1 answer

Send custom data with ACRA without sending an exception itself

Is it possible to send custom data with acra without actually having a Throwable? I´ve seen that it is possible to append custom crashdata by using ACRA.getErrorReporter().putCustomData() But the data will only be send if there will follow an…
Marian Klühspies
  • 15,824
  • 16
  • 93
  • 136
3
votes
1 answer

ACRA + NativeCrashHandler

I am building a native android application. To get crashes I am using ACRA 4.5 with Native-Crash-Handler as suggested on ACRA's Advanced usage page for catching the native crashes. It works fine when I run it in SILENT mode. But if I use DIALOG or…
rohitwali
  • 57
  • 1
  • 7
3
votes
1 answer

ACRA custom log reporter

I'm using ACRA with bugsense.com in conjunction for taking bug reports. Can I use them to send my arbitrary messages from an app? I want it send user's wrong behavior to bugsense server. Is the only way to do this is generate Exception? I'm not sure…
dimetil
  • 3,851
  • 2
  • 29
  • 47
3
votes
1 answer

Android application can't compile/find ACRA library after import

If someone could please help point me in the right direction, I would be forever great-full! I've searched high and low, and can't seem to find a solution to this to save my life. :( I'm having a problem compiling my application after I followed the…
xxstevenxo
  • 661
  • 3
  • 12
  • 27
3
votes
2 answers

Logback-android and ACRA

I'm trying to set up my app so I can write logs using logback-android, and then send them to Google Docs using ACRA. I think this is possible but the one issue I have, is where to write the logs. Both libraries need a hard-coded filename, so I can't…
Timmmm
  • 88,195
  • 71
  • 364
  • 509
3
votes
1 answer

Internet permission in Android app not granted

I'm trying to use ACRA in my project but whenever my app launches, I see the following message in the log. E/ACRA (11618): com.example.TestApp should be granted permission android.permission.INTERNET if you want your crash reports to be sent. If…
Michael Mior
  • 28,107
  • 9
  • 89
  • 113
3
votes
1 answer

Customizing Log report - ACRA Android

I am using ACRA for android app like this @ReportsCrashes(formKey = "dEpU12345lRZYjFtOUxMVHl4MFpMdnc6MQ", mailTo = "issues@xyz.com", customReportContent = { ReportField.ANDROID_VERSION, ReportField.PHONE_MODEL, ReportField.CUSTOM_DATA,…
Ganesh K
  • 2,623
  • 9
  • 51
  • 78
3
votes
1 answer

ACRA - silently send crash reports without any crash dialog

I don't want to show any toast, notification and any dialog, want to send the crash reports silently without any crash dialog but when I applied below code, I am getting default crash dialog box. Any body have any idea how to get rid of crash dialog…
Maneesh
  • 6,098
  • 5
  • 36
  • 55
3
votes
3 answers

ACRA with android: How to execute code before crash is reported

I am using ACRA woth my android app. My question is, when a crash happens, how can I make sure I execute some code before the crash is reported. I mean I would like to add some custom variables when the crash happens so I know what state the app…
Snake
  • 14,228
  • 27
  • 117
  • 250
3
votes
1 answer

How to programatically change ACRA 'interaction mode' setting

I'm implementing ACRA in my Android App. I would like to be have it's interaction mode be silent by default, but if I see that a new version of my App is available, "Toast" the user upon crash with a message to update their copy of the App. However…
Yossi
  • 1,226
  • 1
  • 16
  • 31
2
votes
1 answer

Building android project with ant

I am trying to build my android project using ant in command line mode. It works with eclipse and it used to work with ant until i installed the latest android sdk. I run ant release -buildfile projectdir\build.xml. The compilation process is ok,…
Joel
  • 3,427
  • 5
  • 38
  • 60
2
votes
2 answers

Getting java.lang ExceptionInInitializerError when initializing ACRA

I integrated ACRA to my application to get crash reports from my app in beta stadium so I'm able to fix bugs, find errors in code, etc. If I run this on the emulator everything works fine and ACRA is up and running, but if I export a signed package…
herom
  • 2,532
  • 29
  • 41
2
votes
1 answer

Can multiple data reporting utilities report on the same uncaught exception?

My app uses Flurry for analytics and the excellent ACRA for uncaught exception reporting. This means that there are 3 places uncaught exception reporting happens: Flurry, ACRA and the crash error report within the Android Developer Console. As far…
Chris Knight
  • 24,333
  • 24
  • 88
  • 134