Is there a certain word to search in Logcat that will give me the specific reason for the crash?
Otherwise I'm scrolling through hundreds of logs and only 1 of them is important to determine the reason for the crash.
Is there a certain word to search in Logcat that will give me the specific reason for the crash?
Otherwise I'm scrolling through hundreds of logs and only 1 of them is important to determine the reason for the crash.
Most of android crash reports start with FATAL EXCEPTION
and then followed by Process: your.application.package, PID: yourAppPID
.
You can also use tools like Fabric's Crashlytics to have your crash reports organized in a web browser.