How to get crash dump when my app crashes, it usually happens in c++ module of my apk. I found that this code in c++
try
{
made some crash code to test
}
catch(...)
{
i ,catch it ,and write the info to the sd card.
}
when crash happens, the code do not enter the catch part, it crashed immediately.
Is there anything wrong? Thanks.