Developer Console

Step 12: Go Live! (VSK Fire TV)

When you've finished testing your app, and it has been approved to be published, you're ready to go live. Complete the following sections.

Publish Your Video Skill

Publish your video skill:

  1. Return to your video skill in the Alexa Console.
  2. Click Edit next to your video skill.
  3. If you need to update any information on the Distribution tab (for example, sample phrases, logo images, invocation words, etc.), do so now.
  4. Click the Certification tab at the top.
  5. Click the Submission tab on the left.
  6. In the Publishing preference section, select the Just certify radio button.
  7. Click Submit for Review.
  8. Let your Amazon representative know that you submitted your skill for certification.

Your Amazon representative will let you know when your skill has been certified.

Change STAGE to LIVE in Alexa Client Library Configuration

After your skill is certified, you need to change the skill stage property for the Alexa Client Library. This will tell Fire TV to use the live version of your video skill rather than the development version.

When you initialized the Alexa Client Library, you noted that SKILL_STAGE_DEVELOPMENT was set in the app > java >com.example.vskfiretv > MainActivity:

clientManager.initialize(getApplicationContext(),
         alexaSkillId,
         AlexaClientManager.SKILL_STAGE_DEVELOPMENT,
         capabilities);

Change this to SKILL_STAGE_LIVE as follows:

clientManager.initialize(getApplicationContext(),
         alexaSkillId,
         AlexaClientManager.SKILL_STAGE_LIVE,
         capabilities);
Sample app

In the sample app, this skill stage code appears in TenFootApp.java.

Publish Your App

At this point, you're ready to publish your app in the developer console. See one of the following:

Amazon will test your app to ensure the video skill is working as designed in the app. When the evaluation is completed and passes, your app will be published.

What's Next?

After you go live, consider adding ways to educate customers about the voice commands they can use with your app. You might explore how other popular apps with VSK integration have approached customer education.


Last updated: Apr 18, 2022