views:

10

answers:

0

I'm attempting to write a BroadcastReceiver to be notified when the Android OS kills an app in order to reclaim resources. I've tried filtering on "android.intent.action.PACKAGE_RESTARTED" but I never seem to receive that broadcast, even when I force close an application.

So, am I using the correct intent action filter? If not, what is the proper one? Or is this simply not possible?

Thanks!