Alternative of 'unfortunately app has stopped'

332 views Asked by At

I want to know is there any way to know the cause of error or make android device to show the error details instead of just displaying the message 'Unfortunately App has stopped working' ?

1

There are 1 answers

0
KiBa1215 On BEST ANSWER

You can check the logcat on your IDE. Or using adb command, like adb logcat. It can also filter the message, if yout just want to see the error log, you can use adb logcat *:E. And another choice is to output the log file to sdcard, by using adb logcat -f /sdcard/log.txt.