Set Up the AVS Device SDK on macOS
The following tutorial provides step-by-step instructions to set up the Alexa Voice Service (AVS) Device SDK on macOS. This process includes installing, building, authorizing, and using the AVS Device SDK. When finished, you have a working sample app to test interactions with Alexa.
Before you get started, see the SDK overview page to establish a working knowledge of how the SDK works.
You complete the following activities in this tutorial:
- Register an AVS device with the Amazon developer portal.
- Install and configure AVS Device SDK dependencies on macOS.
- Build the AVS sample app and run it on macOS.
- Prerequisites
- Set up your macOS environment
- Download the SDK
- Build the SDK sample app
- Set up your configuration file
- Run and authorize the sample app
- Use the sample app
- Extra build options
- Troubleshooting
Prerequisites
You must meet the following prerequisites to complete this tutorial.
Required hardware
External speaker or headset – Your audio source.
Required software
- AVS Device SDK 1.17.0 or higher – The instructions in this tutorial download the latest version of the SDK that's available.
- Python – Minimum version 2.7.x.
- Homebrew – a software package management system that simplifies installation.
- XCode command line tools – an integrated development environment for macOS.
Register your AVS device with Amazon
Before you install the AVS Device SDK, you must register an AVS product and create a security profile.
After registering your device, you download a config.json file. This file contains your client ID and client secret. The client ID and client secret authorize your device, so you can retrieve access tokens from AVS. Your config.json file facilitates the authorization calls between your device and AVS.
Set up your macOS environment
Before you download and install the AVS Device SDK, you must set up the appropriate development environment for macOS. The following instructions presume that you set your home directory to /Users/username/
. If you use different folder names, update the /Users/username/
commands throughout the guide.
To set up your development environment on macOS
-
To create the necessary folders required to organize the files you extract from the SDK, open your terminal, and then run the following commands.
cd /Users/username/ mkdir my_project cd my_project mkdir build source third-party application-necessities cd application-necessities mkdir sound-files
-
Confirm that you have installed Python 2.7.x, Homebrew, and the Xcode command line tools.
python -V brew --version xcode-select --version
-
Make sure that you have the latest version of Homebrew.
brew update
-
Install curl-openssl.
AVS requires this dependency to connect to HTTP.
cd /Users/username/ brew install curl-openssl echo export PATH="/usr/local/opt/curl-openssl/bin:$PATH" >> ~/.bash_profile
-
Install the SDK dependencies.
cd /Users/username/ brew install gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-libav sqlite3 repo cmake clang-format doxygen wget git
Important: Make sure that all the dependencies installed without errors. If you receive errors, you might have to install each dependency independently with thebrew install
command. -
Install and configure PortAudio.
Audio input and output doesn't work without this dependency.
cd ../third-party wget -c http://www.portaudio.com/archives/pa_stable_v190600_20161030.tgz tar xf pa_stable_v190600_20161030.tgz cd portaudio ./configure --disable-mac-universal && make
-
Retrieve the correct
PKG_CONFIG_PATH
path and modification.brew info openssl
-
Update the libffi package configuration path to the path retrieved in the previous step.
echo export PKG_CONFIG_PATH="/usr/local/opt/libffi/lib/pkgconfig:/_path-to-openssl_/lib/pkgconfig:$PKG_CONFIG_PATH" >> ~/.bash_profile
Download the SDK
Clone the SDK into the /Users/username/my_project/source folder.
cd /Users/username/my_project/source
git clone git://github.com/alexa/avs-device-sdk.git
Build the SDK sample app
Next you build the SDK by using your terminal.
You use CMake parameters to customize what features you want to build in the sample app. For example, to generate debug logs from the sample app build, include the -DCMAKE_BUILD_TYPE=DEBUG
option.
This example configures the following build options.
- Enables GStreamer
- Enables PortAudio
- Specifies the
curl-openssl
library location - Enables debug logging
To build the sample app
-
Generate the build dependencies for the sample app by using
CMake
.cd /Users/username/my_project/build/ cmake /Users/username/my_project/source/avs-device-sdk \ -DGSTREAMER_MEDIA_PLAYER=ON \ -DCURL_LIBRARY=/usr/local/opt/curl-openssl/lib/libcurl.dylib \ -DCURL_INCLUDE_DIR=/usr/local/opt/curl-openssl/include \ -DPORTAUDIO=ON \ -DPORTAUDIO_LIB_PATH=/Users/username/my_project/third-party/portaudio/lib/.libs/libportaudio.a \ -DPORTAUDIO_INCLUDE_DIR=/Users/username/my_project/third-party/portaudio/include \ -DCMAKE_BUILD_TYPE=DEBUG
-
Build the sample app.
make SampleApp
Note: Themake SampleApp
command only builds the SDK sample app. To build the entire SDK – including unit and integration tests – run themake
command instead.
Set up your configuration file
You configure the AlexaClientSDKConfig.json file by running the genconfig.sh configuration script. This script uses data from your config.json file to populate your AlexaClientSDKConfig.json file.
To set up AlexaClientSDKConfig.json by using genConfig.sh
-
Move the config.json file you downloaded into the Install folder of the SDK, /my_project/source/avs-device-sdk/tools/.
-
Create a database directory.
mkdir /Users/username/my_project/build/Integration/database
-
Run genConfig.sh from the /Users/username/my_project/source/avs-device-sdk/tools/Install directory.
Include all the parameters shown in the code example below.
cd /Users/username/my_project/source/avs-device-sdk/tools/Install bash genConfig.sh config.json 12345 \ /Users/username/my_project/build/Integration/database \ /Users/username/my_project/source/avs-device-sdk \ /Users/username/my_project/build/Integration/AlexaClientSDKConfig.json \ -DSDK_CONFIG_MANUFACTURER_NAME="my_project" \ -DSDK_CONFIG_DEVICE_DESCRIPTION="macos"
Important: Rerunning genConfig.sh overwrites any values set in AlexaClientSDKConfig.json. If necessary, back up the file.
Run and authorize the sample app
When you run the sample app for the first time, you must authorize it with Amazon using a generated code specific to your device.
To run and authorize the sample app
-
Navigate to your BUILD folder, set up an environment variable, and then start the sample app.
cd /Users/username/my_project/build/ ./SampleApp/src/SampleApp ./Integration/AlexaClientSDKConfig.json
- Wait for the sample app to display the following message.
################################## # NOT YET AUTHORIZED # ################################## ################################################################################################ # To authorize, browse to: 'https://amazon.com/us/code' and enter the code: {XXXX} # ################################################################################################
- Open a browser, and then navigate to the URL specified in the message from the sample app.
- Log in to your Amazon developer account.
- Enter the code specified in the message from sample app.
- Select Allow.
-
Wait for the sample to authorize.
You can now use the sample app to talk to Alexa
########################### # Authorized! # ########################### ######################################## # Alexa is currently idle! # ########################################
Use the sample app
If you need to relaunch the sample app, run the following command again.
cd /Users/username/my_project/build
./SampleApp/src/SampleApp ./Integration/AlexaClientSDKConfig.json DEBUG9
Now that you have a working sample app, try an interaction with Alexa. For more details about how to interact with Alexa, see Use the sample app.
Extra build options
Use the following instructions to enable additional build options.
Enable debug logs
Use the debug flag to get more information about problems you might encounter. Accepted values include DEBUG1
through DEBUG9
.
For example, the following command uses the DEBUG9
logging flag.
./SampleApp /home/pi/sdk-folder/sdk-build/Integration/AlexaClientSDKConfig.json /home/pi/sdk-folder/third-party/alexa-rpi/models DEBUG9
Troubleshooting
For more details about fixing common issues, see Troubleshooting.