I have C++ codebase running on Android, and want to have crash reports sent by users.
I\'m using ACRA library which works fine for Java code, but when something crashes
ACRA can trap the application crashing. You could then instantiate a second process that would execute the logcat ( see this question ) command, filtering by your application name, and then have the process to send the dumped file to you. This is far from optimal because:
But I didn't found another alternative to do this.