I have an AsyncTask which starts on boot (called by a service). In some cases I would like to send a notification to start the main Activity. My problem comes when I try to call:
NotificationManager notManager = (NotificationManager) getSystemService(ns);
where eclipse shows me an error because AsyncTask hasn't got getSystemService method. Any idea?
Thank you.