Activity has leaked window com.android.internal.policy.impl.PhoneWindow$DecorView@44f72ff0 that was originally added here

You are leaking the dialog. You need to call pDialog.dismiss(); in the onPostExecute() method of the async task. You should also put… if(pDialog != null) pDialog.dismiss(); in your onPause() method of the activity on the main thread. This will make sure the window is not leaked, even if your application loses the foreground while doing … Read more

requestAnimationFrame garbage collection

I have found out the following: If you change your RAF function into two “ping-pong” like functions, you get alot less garbage. You can’t avoid the first initial “big GC”, but after that you see only minor GCs of about 50kb instead of 700kb-1mb GCs. The code will look like this: <script type=”text/javascript” charset=”utf-8″> window.frameA … Read more

The web application [] appears to have started a thread named [Abandoned connection cleanup thread] com.mysql.jdbc.AbandonedConnectionCleanupThread

See this answer. It seems that MySQL driver should be in {$TOMCAT]/lib shared between applications. Check that you are not including it with each application. At least it worked for me and I have been able to remove the warning. If you are using Maven mark the dependency as provided. UPDATE: root cause is that … Read more