276 questions
0
votes
1
answer
52
views
Is it possible to send the errors captured with ACRA by customizing the JSON body?
I need the body of the JSON that I will send to the API to report errors to have the following format:
{
"error_message":"This is a test error message.",
"dispo_info&...
0
votes
1
answer
49
views
Acra Android OS 11 and 12 Mac Address
im using Acra on Android OS10, We will update soon to OS12, Will it be possible for Acra to get the MAC address from the device?
0
votes
0
answers
177
views
ACRA 5.9 sends HTTP error report multiple times
After upgrading our app to ACRA 5.9 I found that error reports are sent by HttpSender multiple times.
ACRA is initialized like this:
ACRA.init(this, new CoreConfigurationBuilder()
....
0
votes
1
answer
82
views
Crash report are not coming in with Aralyzer
I have set up Acralyzer on my application, but the reports are not coming in. The last report came about 10 days ago, but now no reports are coming. I don't really know much about acralyzer, but after ...
0
votes
1
answer
300
views
Migrating ACRA from annotations to pluginconfigurations
I use ACRA 5.8.4 and I want to update it to 5.9.6 but @annotations are deprecated and I have to change it to PluginConfigurations, but documentation isn't finished and I don't know how to do it. This ...
2
votes
1
answer
762
views
Can't initialize ACRA. Method getPluginConfigurationBuilder not found
everyone!
I'm trying to use ACRA in my Android project. I have followed recommendations at ACRA Setup. My app.java file is almost identical to that on ACRA Setup, but Android Studio still shows me ...
0
votes
1
answer
48
views
Storing AuthLogin and AuthPassword on Android
I am using Acrarium-Acra to collect debug logs for customer facing issues in my Android App. Acrarium generates a unique AuthLogin and AuthPassword pair for the application.
httpSender {
uri = &...
0
votes
1
answer
161
views
Android ACRA - Bearer Authentication
Hello I implemented ACRA error repporting to my project (https://github.com/ACRA/acra) and it works. But I have one problem, is it possible to specify authentication in HTTP Sender other than the ...
1
vote
1
answer
180
views
ACRA toast appearing, but cannot explain why
I have a complex Android app that uses ACRA for error reporting, which generally works fine.
Except, on one test device, I now see the ACRA toast appearing, during app startup, and then disappearing. ...
0
votes
2
answers
815
views
Custom ReportSender is not working ACRA 5.7.0 with Android
I'm implementing on my backend side a dashboard to handle the crash reports of my application, however it requires authentication through tokens, and from what I read, the HTTPSenser of ACRA 5.7.0 ...
0
votes
1
answer
405
views
ACRA can't send customHttpSender to Acrarium
I need to modify the report sends to Acrarium, so I use HttpSender. I have tried using ReportSender instead of HttpSender but the result is the same: report is not send to Acrarium. It works fine ...
0
votes
1
answer
775
views
Emailing Reports using ACRA(ver 5.7.0) on Android not working
Im trying to capture the crash logs and send it via mail using ACRA. But the mail is not received.
I have done the following :
1. Initialized ACRA inside the oncreate method of the main activity
ACRA....
0
votes
0
answers
113
views
Why my ACRA plugin doesn't send any data to mail message body?
I have such ACRA sender class:
@ReportsCrashes(formUri = "",
mailTo = "****@gmail.com",
mode = ReportingInteractionMode.TOAST,
customReportContent = [ReportField.ANDROID_VERSION,ReportField....
0
votes
1
answer
163
views
ACRA Mailer not giving me share file as window in Android 10
I am using ACRA 5.5.1 in React Native 0.61.2. I am using Dailog + Mailer feature to send the crash reports.
@AcraCore(buildConfigClass = BuildConfig.class,
reportFormat = StringFormat.JSON)
@...
0
votes
1
answer
266
views
setting up ACRA 5.5.1 in ReactNative 0.61.2
I am trying to setup ACRA for my react native project which using 0.61.2 version. I followed the basic setup tutorial from https://github.com/ACRA/acra/wiki/BasicSetup .
But while building the ...