0

I am familiar with collecting crash reports using ACRA library.

Is it possible collecting all logs of my Android app in a remote device, not only crash logs?

For instance, when tester is testing my app, all those logs should be updated to my system (e.g. by mail, or any way that lets me analyze the log on my system).

Is there any third party library for that, or can we get it from Android native?

F43nd1r
  • 7,690
  • 3
  • 24
  • 62
Karthikeyan Ve
  • 2,550
  • 4
  • 22
  • 40

1 Answers1

0

Starting with Android 4.1 the only app which can access your logs is your own app. That means you have to integrate this functionality in your app.

You can use ACRA to do that: just call ACRA.getErrorReporter().handleSilentException(null) periodically (e.g. every time your app exits).

F43nd1r
  • 7,690
  • 3
  • 24
  • 62