This repository was archived by the owner on Jan 16, 2024. It is now read-only.
v1.15
Enhancements
- Added
SystemSoundPlayerto ApplicationUtilities.SystemSoundPlayeris a new class that plays pre-defined sounds. Sounds currently supported include the wake word notification and the end of speech tone. This change is internal and you don't need to update your code. - Removed Echo Spatial Perception (ESP) functionality from the Alexa Voice Service (AVS) device SDK. Make sure you download and test your devices using the new AVS SDK sample app. If you're using an older version of the sample app, manually remove any references to ESP or errors occur during compile.
- Added
onNotificationReceivedtoNotificationsObserverInterface.onNotificationReceivedbroadcasts whenNotificationsObserverInterfacereceives a new notification, instead of only sending the indicator state. This is important if you support a feature that requires a distinct signal for each notification received. See NotificationsObserverInterface for more details. - Added support for Multilingual Mode. With this enabled, Alexa automatically detects what language a user speaks by analyzing the spoken wake word and proceeding utterances. Once Alexa identifies the language, all corresponding responses are in the same language. The current supported language pairs are:
[ "en-US", "es-US" ][ "es-US", "en-US" ][ "en-IN", "hi-IN" ][ "hi-IN", "en-IN" ][ "en-CA", "fr-CA" ][ "fr-CA", "en-CA" ]
IMPORTANT: Specify the locales your device supports in the localeCombinations field in AlexaClientSDKConfig.json. This field can't be empty. If you don't set these values, the sample app fails to run.
- Added two new system settings, Timezone and Locale.
- Timezone: For example, you can set the
defaultTimezonetoAmerica/Vancouver. If you don't set a value,GMTis set as the default value. If you set a new timezone, make sure that your AVS system settings and default timezone stay in sync. To handle this, use the new classSystemTimeZoneInterface. See System Interface > SetTimeZone for more information. - Locale: For example, you can set
defaultLocaletoen-GB, instead of the defaulten-US.
- Timezone: For example, you can set the
- The SpeechRecognizer interface now supports the following functionalities.
- Change wake word (
Alexasupported for now). - Toggle start of request tone on/off.
- Toggle End of request tone on/off.
- Change wake word (
- Deprecated the CapabilityAgents
Settings{…}library.Settings {…}now maps to an interface that's no longer supported. You might need to update your code to handle these changes. Read Settings Interface for more details. - Added support for three new locals: Spanish - United States (ES_US), Hindi - India (HI_IN), and Brazilian - Portuguese (PT_BR).
- Linked the atomic library to the sample app to prevent build errors on Raspberry Pi.
Bug Fixes
- Fixed resource leaking in EqualizerCapabilityAgent after engine shutdown.
- Issue 1391: Fixed an issue where SQLiteDeviceSettingsStorage::open tries to acquire a mutex twice, resulting in deadlock.
- Issue 1468: Fixed a bug in AudioPlayer::cancelDirective that causes a crash.
- Fixed Windows install script that caused the sample app build to fail - removed pip, flask, requests, and commentjson dependencies from the mingw.sh helper script.
- Fixed issue: notifications failed to sync upon device initialization. For example, let's say you had two devices - one turned on and the other turned off. After clearing the notification on the first device, it still showed up on the second device after turning it on.
- Fixed issue: barging in on a reminder caused it to stick in an inconsistent state, blocking subsequent reminders. For example, if a reminder was going off and you interrupted it, the reminder would get persist indefinitely. You could schedule future reminders, but they wouldn't play. Saying “Alexa stop” or rebooting the device fixed the “stuck” reminder.
Known Issues
- Music playback history isn't displayed in the Alexa app for certain account and device types.
- When using Gnu Compiler Collection 8+ (GCC 8+),
-Wclass-memaccesstriggers warnings. You can ignore these, they don't cause the build to fail. - Android error
libDefaultClient.so not foundmight occur. Resolve this by upgrading to ADB version 1.0.40. - If a device loses a network connection, the lost connection status isn't returned via local TTS.
- ACL encounters issues if it receives audio attachments but doesn't consume them.
SpeechSynthesizerStateusesGAINING_FOCUSandLOSING_FOCUSas a workaround for handling intermediate states.- Media steamed through Bluetooth might abruptly stop. To restart playback, resume the media in the source application or toggle next/previous.
- If a connected Bluetooth device is inactive, the Alexa app might indicates that audio is playing.
- The Bluetooth agent assumes that the Bluetooth adapter is always connected to a power source. Disconnecting from a power source during operation isn't yet supported.
- When using some products, interrupted Bluetooth playback might not resume if other content is locally streamed.
make integrationisn't available for Android. To run Android integration tests, manually upload the test binary and input file and run ADB.- Alexa might truncate the beginning of speech when responding to text-to-speech (TTS) user events. This only impacts Raspberry Pi devices running Android Things with HDMI output audio.
- A reminder TTS message doesn't play if the sample app restarts and loses a network connection. Instead, the default alarm tone plays twice.
ServerDisconnectIntegratonTesttests are disabled until they are updated to reflect new service behavior.- Bluetooth initialization must complete before connecting devices, otherwise devices are ignored.
- The
DirectiveSequencerTest.test_handleBlockingThenImmediatelyThenNonBockingOnSameDialogIdtest fails intermittently.