I want to confirm that the 3rd party lib on an android app is working properly and catching all native crashes/reporting them.
Surprisingly, i can't find any each ways to do so. what's the simplest and quickest way to do this on Android? (ideally, triggerable by pressing a button).
i.e. on C you can do
int main(void)
{
char *s = "hello world";
*s = 'H';
}
that's pretty simple. what's the equivalent in Android?
**Edit: in Android APPLICATION code. no use of native code.