Posts

Showing posts with the label Android Studio

Don't clear logs after app get crashed - Android Studio

Image
Currently, I am working on one app which keep getting crash at PIE version and I was not getting any crash log under logcat. After some research here and there, I get to know that by default logcat logs based on selected process and once your app get crashes, it will clear the crash log as the existing process is gone. To see the crash logs: ·         Goto logcat and click on right hand side drop down button and select Edit Configuration. ·         Add Filter Name as your app Name and project Name as Package Name. Save it. Now try again. You will able to see your app crash log now.   Thank you. Happy Coding…!!!