my application is almost done. Now I'm just making a correction. I encounter the problem that sometimes I accidentally (not always at the same time or after the same actions are performed) so that my application crashes. Logcat just tells me
threadid=11 thread eixiting with uncaught exception (group=0x4134d2a0)
But there is no βcausedβ by what usually comes, so I can actually catch the exception. When it crashes (by accident), this is written to my console.
[2013-10-22 15:39:36 - ddms] null java.lang.NullPointerException at com.android.ddmlib.Client.read(Client.java:698) at com.android.ddmlib.MonitorThread.processClientActivity(MonitorThread.java:311) at com.android.ddmlib.MonitorThread.run(MonitorThread.java:263) [2013-10-22 15:39:36 - ddms] null java.lang.NullPointerException at com.android.ddmlib.Client.read(Client.java:698) at com.android.ddmlib.MonitorThread.processClientActivity(MonitorThread.java:311) at com.android.ddmlib.MonitorThread.run(MonitorThread.java:263)
But these are not my classes. How can I catch the exception? Keep in mind that I cannot post all the code here. This is, firstly, too much, and I am not allowed ... The application accidentally crashes. I donβt know why and how to handle it. Any suggestions?
Now I am launching a galaxy note application.
source share