5

Currently, I am working with Android O in one of our application, I'm receiving the notification but there is no beeper sound associated with it. I have set the sound to the notification channel but no results. I'm receiving a warning AUDIO_OUTPUT_FLAG_FAST denied by the server. Apart, from this no errors. Can someone please evaluate this?

Kishore Jethava
  • 6,666
  • 5
  • 35
  • 51

1 Answers1

1

The design documentation describes a difference between the client level denying the request and the server (AudioFlinger) denying the request for a "fast track". If the client (C++ implementation library that you call) passes on the request, it may also be denied at the server level. The page describes the conditions required to create a "fast track" and one of these is probably not met in your case.

I also have this error and yet the system allocates a "normal track" and the audio flows, just with too much latency. I wish I could get more information on why it has been denied.

hack_on
  • 2,532
  • 4
  • 26
  • 30