I'm helping develop an app that uses a 3rd party library which uses the NDK. However, whenever I try to enable NDK reporting, I don't see any actual crashes in the live alerts:
CrittercismConfig config = new CrittercismConfig();
config.setNdkCrashReportingEnabled(true);
Crittercism.initialize(getApplicationContext(), "myCrittercismId", config);
How do I capture native crashes with Crittercism?
Alternatively, we do have this other library that can capture native crashes and dump them into a file. However, I couldn't find a way to upload just a raw file with a Handled Exception for Crittercism. How is this usually done? Where you want to upload custom data that is associated with a crash?