[android-developers] Re: android.app.Application onTerminate() Method doesn't fire

2008-12-17 Thread Dianne Hackborn
You basically can never know, because the Application class is never closed, it is just created and then remains for the remaining life of the process. On Wed, Dec 17, 2008 at 10:34 AM, djfrodo wrote: > > Hi all, > > O.k. it's clearly stated in the docs (here: > http://code.google.com/android/re

[android-developers] Re: android.app.Application onTerminate() Method doesn't fire

2008-12-17 Thread Justin (Google Employee)
Have you checked in DDMS that your application has actually shut down? Also, from the documentation: "Note: never depend on this method being called; in many cases an unneeded application process will simply be killed by the kernel without executing any application code." Cheers, Justin Android