How To Send Acra Reports To Multiple Destinations?
I've this special case where in I need to send the crash reports from my app to both BugSense and my own server. And AdvancedUsage - ACRA/acra Wiki says : 'You can even send repor
Solution 1:
Apart from the solution I already talked about in the question (by implementing our own version of ReportSender
), we can apparently also use the less obvious :
ACRA.getErrorReporter().addReportSender(ReportSender sender)
This adds the ReportSender
to List<ReportSender> mReportSenders
, which is then iterated over while sending reports.
Post a Comment for "How To Send Acra Reports To Multiple Destinations?"