Hi,

I want my app to kill a running app but i got the problem that since
API 8 the method is deprecated and i need to use another function.

So i want that if API level of the device is smaller than 8 it runs
this

                ActivityManager aM = (ActivityManager)
this.getSystemService(ACTIVITY_SERVICE);
                aM.restartPackage(package);

And from 8 this

                ActivityManager aM = (ActivityManager)
this.getSystemService(ACTIVITY_SERVICE);
                aM.killBackgroundProcesses(package);

But how do i accomplish this because using something like an if will
make the compiler complain.

Mats

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

Reply via email to