When does NotificationManager.notify() require WAKE_LOCK permission on Android 2.2?

I received following stack trace from one user:

java.lang.SecurityException: Neither user ***** nor current process has android.permission.WAKE_LOCK.
  at android.os.Parcel.readException(Parcel.java:1247)
  at android.os.Parcel.readException(Parcel.java:1235)
  at android.app.INotificationManager$Stub$Proxy.enqueueNotificationWithTag(INotificationManager.java:274)
  at android.app.NotificationManager.notify(NotificationManager.java:118)
  at android.app.NotificationManager.notify(NotificationManager.java:94)
  ...

UPDATE Calling code in Scala:

  notification = new Notification(android.R.drawable.stat_notify_sync,
    "%s %s".format(statusTitle, finishedStatus), 0)
  notification.flags = Notification.FLAG_SHOW_LIGHTS | Notification.FLAG_AUTO_CANCEL
  notification.setLatestEventInfo(SyncService.this, statusTitle, finishedStatus,
    PendingIntent.getActivity(SyncService.this, 0, new Intent(SyncService.this, classOf[MainActivity]), 0))
  notificationManager.notify(NOTIFICATION, notification)
link|improve this question

71% accept rate
A little code would be helpful. When are you calling the NotifcationManager? If you are only receiving this from one user, it is possible that it is an isolated incident. – Daniel Jul 18 '11 at 13:14
It's first incident. – TN. Jul 18 '11 at 14:47
feedback

3 Answers

It seems that notification player tries to acquire wake lock when playing sound.

NotificationManagerService source

NotificationPlayer source

link|improve this answer
See update: I am not playing any sound. – TN. Jul 18 '11 at 14:48
feedback

It looks as though you are using a service. Perhaps the service runs too long and the phone goes back to sleep before the notification could be sent. I assume you're using the AlarmManager to bring the phone out of sleep to check for updates? If that is the case, you are just going to have to declare the WAKE_LOCK permission like so:

<uses-permission android:name="android.permission.WAKE_LOCK" />

I have run into this issue before, especially when updating from services on the internet. The only solution I have found is to declare the WAKE_LOCK permission.

link|improve this answer
Yes, the service is running long time. But should the notification wake up the phone? It is not specified in the documentation. – TN. Jul 20 '11 at 12:00
feedback

It seems that it is an issue of some firmwares only, currently the problem has only Meizu.

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.