On Froyo, we found that some new "Task Manager" apps are now using the
ActivityManager.killBackgroundProcesses() to kill apps. When this
happens, Intent.ACTION_PACKAGE_RESTARTED is no longer fired.

How can I find out that my application has been killed?

I tried to start a service, and I do see this message printed in
logcat:

W/ActivityManager( 2426): Scheduling restart of crashed service
com.example.android.apis/.app.RemoteService in 20000ms

However, the service is never restarted as advertised, if the app is
killed using the killBackgroundProcesses API.

(If I go into adb shell and kill the service process, the service will
indeed be restarted ...)

This looks like a bug anyway, because the notification created by the
app is no longer removed like in eclair (the StatusBarService, and a
bunch of other system services, depend on the
Intent.ACTION_PACKAGE_RESTARTED broadcast).

Thanks

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to