Android 2.2 release notes have just been released. ActivityManager.restartPackage method has been deprecated and the description is:

the previous behavior here is no longer available to applications because it allows them to break other applications by removing their alarms, stopping their services, etc.

Instead 2.2 has given another tool for pesky "task killer" apps by introducing new ActivityManager.killBackgroundProcesses method.

More Info

Can someone explain whether ActivityManager.killBackgroundProcesses will kill our scheduled alarms?

If so, deprecating ActivityManager.restartPackage was pointless as "task killer" will now abuse ActivityManager.killBackgroundProcesses.

link|improve this question

What's more important is the new method above that - isUserAMonkey(). – Daniel Lew May 20 '10 at 20:31
LOL! I couldn't stop laughing as well :) – mob1lejunkie May 20 '10 at 20:39
feedback

2 Answers

up vote 2 down vote accepted

I have made tests with this new killing method : alarms are not killed. services are restarting.

link|improve this answer
Woohoo! Take that WinMo era "Task Killer" apps! How long after being killed do Services restart? – mob1lejunkie May 23 '10 at 10:11
feedback

It also appears from my testing that user-visible activities are not closed when this method is called.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.