Android Twilio Android Error - AUDIO_OUTPUT_FLAG_FAST

I am working with an Android community guide at:

https://www.twilio.com/docs/quickstart/php/android-client

On phones with US-Cellular, I get the following errors in the main library:

01-02 12:48:41.102: W/LEMUR(21969): Dial Button Push
01-02 12:48:41.122: W/AudioTrack(21969): AUDIO_OUTPUT_FLAG_FAST denied by client
01-02 12:48:41.122: E/AudioTrack(21969): AudioTrack::set : Exit
01-02 12:48:41.122: W/AudioRecord(21969): AUDIO_INPUT_FLAG_FAST denied by client

Any suggestions for resolving this issue?

+4
source share
1 answer

Always enable the debug log and attach the appropriate output with the problem.

Twilio.setLogLevel(int level);

The level parameter values ​​correspond to the levels provided by the Android SDK: Log.ASSERT Log.DEBUG Log.ERROR Log.INFO Log.VERBOSE Log.WARN.

, , , . , Twilio Client VoIP.

- , , .

-1

Source: https://habr.com/ru/post/1622655/


All Articles