sharath / alexa-smart-screen-sdk

The Alexa Smart Screen SDK enables device makers to build screen-based products that complement Alexa voice responses with rich visuals. https://developer.amazon.com/alexa-voice-service/alexa-smart-screen-sdk

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Alexa Smart Screen SDK

The Alexa Smart Screen SDK extends the AVS Device SDK to support development for screen-based Alexa Built-in products. This SDK enables device makers to build screen-based products that complement Alexa voice responses with rich visual experiences.

The Alexa Smart Screen SDK package in this GitHub repo includes:

  • The Alexa Smart Screen SDK
  • A sample app that demonstrates end-to-end Alexa Smart Screen SDK functionality
  • A GUI web app that handles presentation of Alexa visual responses

The Alexa Smart Screen SDK depends on the following additional GitHub repos:

Get Started

You can set up the Alexa Smart Screen SDK by using the following Quick Start Guides:

You can also create your device prototype by using an Amazon-qualified development kit that supports the Smart Screen SDK, such as:

SDK Architecture

This diagram illustrates the data flows between components that comprise the Alexa Smart Screen SDK.

AVS Device SDK: The SDK for Alexa Voice Service, which implements Alexa intelligent voice control functionality.

Capability Agents (CAs): Handle Alexa-driven interactions; specifically directives and events. Each capability agent corresponds to a specific interface exposed by the Alexa Smart Screen API. These interfaces include:

  • AlexaPresentation - The interface for rendering Alexa Presentation Language (APL) documents.
  • TemplateRuntime - The interface for PlayerInfo and Template cards (such as music cards and other static cards).
  • VisualCharacteristics - The interface for reporting the physical properties of visual display devices (such as screen resolution, window size, and supported interaction modes).

APL Core Client Reference Implementation: This is the Alexa Smart Screen SDK's sample app. It has two components: a sample app and a Javascript-based GUI client app.

  • GUIManager: Interface between the capability agents and the GUI
  • GUIClient: Manages messages between the GUI and the rest of the sample app
  • APLCoreTextMeasurement: Handles text measurement requests from the APL Core Library
  • APLCoreConnectionManager: Manages the currently rendered APL document
  • APLCoreGUIRenderer: Handles the creation of APL documents
  • WebSocketServer: Reference implementation of a WebSocket-based messaging interface

APL Core Library Engine: An abstract engine for Alexa Presentation Language (APL) that manages not only APL document parsing and layout inflation, but also event handling, commands, and the rendering workflow.

HTML Rendering Engine: A Javascript-based GUI client app and APL view host that render the visual experience on the device.

  • WebSocket: Reference implementation of a WebSocket client
  • APL Web ViewHost: Renders the APL document generated by the APL Core Library
  • Alexa GUI: Reference GUI implementation

Security Best Practices

All Alexa products should adopt the AVS Security Requirements. Security requirements for the Smart Screen SDK can be found in Security Requirements for Smart Screen AVS.

Important Considerations

Optional Configurations

Add voice chrome

The default implementation provides information on Alexa state, which you can use to create voice chrome. Be sure to follow the AVS Voice Chrome guidelines.

Run the GUI client with predefined device visual characteristics and GUI client configurations

We provide four different sample configuration files containing predefined device visual characteristics and GUI client configurations. These can be found under modules/GUI/config/guiConfigSamples. You can pass any of them as an extra config file argument after the main Smart Screen SDK config file argument when running the Sample App, for example:

    cd <pathTo>/ss-build
    ./modules/Alexa/SampleApp/src/SampleApp
        -C <pathTo>/sdk-build/Integration/AlexaClientSDKConfig.json
        -C <pathTo>/alexa-smart-screen-sdk/modules/GUI/config/SmartScreenSDKConfig.json
        -C <pathTo>/alexa-smart-screen-sdk/modules/GUI/config/guiConfigSamples/GuiConfigSample_TvOverlayPortrait.json 
        -L INFO

Remote control support

Functionality for Exit and Back buttons (as found on a device's physical remote control) is minimally supported by the Smart Screen SDK. The following behaviors are expected to occur on execution of either a BACK or EXIT navigationEvent:

  • Clear the rendering screen - Exit fully out of the Alexa-presented display so that no static image or layout is left.
  • Release the focus management - Release any focus management that might be held.

Using the default gui client configuration's device keys, Esc and B are mapped to EXIT and BACK respectively.

About

The Alexa Smart Screen SDK enables device makers to build screen-based products that complement Alexa voice responses with rich visuals. https://developer.amazon.com/alexa-voice-service/alexa-smart-screen-sdk

License:Apache License 2.0


Languages

Language:C++ 84.1%Language:TypeScript 9.8%Language:CMake 4.2%Language:Shell 1.2%Language:Python 0.3%Language:CSS 0.2%Language:JavaScript 0.1%Language:HTML 0.0%