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
1 answer

Couchdb access from external IP

I'm trying to get access from an external PC to my couchdb. I've installed (replicated) acralyzer and acra-distributuin on my coucdb. Locally, all works, but externally not (from another pc into the same net, from a mobile...) My bind_address…
Jordi
  • 20,868
  • 39
  • 149
  • 333
0
votes
3 answers

How to set ACRA to handle special kind of exceptions

I configured ACRA and it works fine. I just want to know if its possible to force ACRA to handle special kind of exceptions like IOException and do nothing for other kinds.
Mojtaba Mahamed
  • 495
  • 2
  • 4
  • 18
0
votes
1 answer

Verify that ACRA is working

I am just about to release an app and I saw this stackoverflow question about things you should do before releasing an app. It tells me to use ACRA so I followed the instructions on this page. So know I have a class called MyApplication like so…
Ogen
  • 6,499
  • 7
  • 58
  • 124
0
votes
1 answer

How to send acra report in android when my variable = null

I have an application that send me user_email = null when it shouldn't. I don't understant it, and can't reproduce it in local. I would like to use acra reporting to report system state when user_email = null. I know how to write custom…
Juliatzin
  • 18,455
  • 40
  • 166
  • 325
0
votes
1 answer

Send the Acra report always

I use for my Android app Acra as an error reporter. If the application crashes, i show the user a Dialog where he can wirte a comment. If the user clicks on abort i dont get a report message. My question now is: is it possible to send a report if…
paco
  • 48
  • 9
0
votes
2 answers

ACRA doesn't work

The app is crashed, but ACRA doesn't come up. Heres the log: 11-20 16:50:19.119: ERROR/ACRA(23345): ACRA caught a RuntimeException exception for com.buggyproject. Building report. 11-20 16:50:19.539: ERROR/ACRA(23345): ACRA caught a RuntimeException…
KennyPowers
  • 4,925
  • 8
  • 36
  • 51
0
votes
1 answer

Acra restarting over and over again and freezes emulator

During some testing I managed to freeze the Emulator to the point that I have to create a new Emulator. In the below code I accidentally misspelled a class name and the Class.forName threw the RuntimeException() ClassNotFoundException. The…
Erik
  • 5,039
  • 10
  • 63
  • 119
0
votes
1 answer

ACRA mailto option not including user comment field

Configured for mail and getting mail, but the user comment in the dialog is not added to the mail text, my acra config looks like this @ReportsCrashes(formKey="dGVacG0ydVHnaNHjRjVTUTEtb3FPWGc6MQ", mode = ReportingInteractionMode.DIALOG, mailTo =…
user435739
0
votes
0 answers

ACRA Not sending information

@ReportsCrashes( formKey = "", formUri = "https://blabla.cloudant.com/acra-blabla/_design/acra-storage/_update/report", reportType = org.acra.sender.HttpSender.Type.JSON, httpMethod =…
sn0ep
  • 3,843
  • 8
  • 39
  • 63
0
votes
1 answer

ACRA dialog and email destination on crash android

I am trying to add the crash dump sent to me my email support using acra. I believe there is an option to show a dialog on restart of app. Below is my reportCrash @ReportsCrashes(formKey="dGVacG0ydVHnaNHjRjVTUTEtb3FPWGc6MQ", mode =…
user435739
0
votes
1 answer

Using ACRA with BugSense doesn't work on Android 4.1.2

I'm developing an app for Android and I've recently started using ACRA for easy error reporting. I'm using BugSense as a backend to view and inspect the errors. I've been testing this on a Galaxy S2 with Android 2.3.3 and it worked fine, but when I…
Tal Zion
  • 1,331
  • 2
  • 14
  • 23
0
votes
2 answers

stuck to when get ACRA bug report?

I need to send the bug report into GoogleDocs CrashReports-Template. But I am not getting a single error. @ReportsCrashes(formKey = "dfbhkdfjbnkjsdnkjsdfn") public class MainActivity extends Application { @Override public void onCreate() { …
Akarsh M
  • 1,629
  • 2
  • 24
  • 47
0
votes
1 answer

Get android context inside Acra reportSender implementation

Is there a way to get android context inside custom ACRA ReportSender implementation class? public class MyReportSender implements ReportSender { public ErrorReportSender(){} }
0
votes
3 answers

ACRA formkey where to get it?

So I tried to follow instructions of https://github.com/ACRA/acra/wiki/BasicSetup but its too old or something. Using my own gmail account I did import the csv file but there is no option "Create a LEGACY Form" in tools menu but only "Create form".…
Stan
  • 6,511
  • 8
  • 55
  • 87
0
votes
1 answer

android ACRA crashreports: multiple formKeys

I have a library project and different sub-projects with images/teksts etc, that use this library. I want every app (sub-project) to have it's own crashreport formkey, but I can only set it once, statically in the library's Application class, using…
Frank
  • 12,010
  • 8
  • 61
  • 78