Developer Console

Step 5: Sign Your App and Configure a Security Profile (VSK Fire TV)

This page will lead you through the process to sign your app and create your API key to authorize it.

About Signing Your App During Development

Keys for signing your app are stored in a keystore. For Android apps, usually there is a debug keystore and a release keystore.

Your app's signature is a hash value that is applied to every Android app when it is built. When you run your app from Android Studio (as you're developing your app), Android automatically signs your app with a debug key by default.

However, this default debug key provided by Android Studio won't be accepted by Fire TV for projects that include video skills, and your app won't run. Even during local development of an app with a video skill, you must sign your APK with a signature whose MD5 and SHA-256 values are associated with an Amazon security profile. The security profile will provide you with an API key that you incorporate into your app to authorize the communication from Amazon Device Messaging.

Follow the steps below to customize the debug signing key in Android Studio in order to properly sign your app for Fire TV.

Create a Key to Sign Your App

For a pre-release or "debug" version of your app, you must create an API key and store it in your project. To add the API key to your app:

  1. Create a file called api_key.txt located inside your project's assets folder. Placing the file in this specific directory is required.
  2. Insert your API key as the only data in this api_key.txt file.

For a release or "production" version of your app, if your app uses the Appstore SDK, you must create an additional API key for the release version of your app. If using the older IAP SDK v2.0 and you sign your app using your own certificate, you must also create an API key for the release version of your app. In contrast, if using the IAP SDK v2.0 and you allow Amazon to sign your app on your behalf, you do not need to create an additional API key. For a summary, see the following table.

You can find your AppStore certificate hash values in the Developer Console to create the API keys for existing apps. Go to My apps > select your app > Upload Your App File > Appstore Certificate Hashes.

Here's a quick reference for how you should sign your app:

Uses Appstore SDK Self-signs release app Production or development version How to sign your app
prod The API key is automatically generated and injected for release apps, no need to do anything else.
prod Developer must create API key using their own release certificate hashes and add it to assets.
prod Developer must create API key using release certificate hashes from Developer Console and add it to assets
prod Developer must create API key using their own release certificate hashes and add it to assets.
any any development Developer must create API key using their own release certificate hashes and add it to assets.

The first step is to create a key to sign your app. Keys for signing your app are stored in a keystore. Generally, for Android apps there is a debug keystore and a release keystore. To create a signing key:

  1. If you already have a custom debug key (not the default Android debug key) to sign your app, make sure you know the keystore location, keystore password, key alias, and key password. Then skip to the next section: Automatically Sign App with Key.
  2. If you don't alreday have a custom debug key, in Android Studio, click Build in the top navigation and select Generate Signed Bundle / APK.
  3. In the "Generate Signed Bundle or APK" dialog box, select APK. Then click Next.
  4. Click Create new and define the fields for a new key. See Generate an upload key and keystore in the Android documentation for more details. Fill out at least one of the fields in the Certificate form. When finished, click OK.
  5. Make a note of your keystore location, keystore password, key alias, and key password, as you will need this information in the next section.

    Creating signing keys
    Creating signing keys

    For more information, see Generate a key and keystore in the Android documentation.

  6. Close the dialog box without proceeding through the other wizard screens to generate the APK. Continue on to the next step.

Automatically Sign Your App with the Custom Key

In the previous step (Create a Key to Sign Your App), you created a custom key to sign your app. In this step, you will update the key that your debug profile uses in Android Studio. To customize the signing key used with your debug profile:

  1. Open your Fire TV app project in Android Studio.
  2. Go to File > Project Structure.
  3. Click Modules on the left.
  4. Click the Signing Configs tab at the top.
  5. Click the + button and create a new config called firetv.
  6. Configure your new firetv signing configuration by selecting the Store File, Store Password, Key Alias, and Key Password based on the information noted from the previous section (Create a Key to Sign Your App).

    Configuring signing keys
    Configuring signing keys
  7. Click Apply and then OK to close the dialog box. Gradle syncs your project with the updated signing information.
  8. In the left pane, expand Gradle Scripts and double-click your build.gradle (Module: app) file.
  9. Verify that an object called signingConfigs appears with details about your firetv signing config profile. For example:

     android {
         signingConfigs {
             firetv {
                 storeFile file('/Users/johndoe/android_signature/androidkeys.jks')
                 storePassword var
                 keyAlias = 'myandroidkeys'
                 keyPassword var
             }
         }
         ...
       }
       ...
     }
    

    The buildTypes property should also specify to use the firetv signing key for both release and debug builds. (If these are commented out in the sample app, uncomment them.)

     buildTypes {
         release {
             minifyEnabled false
             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
             signingConfig signingConfigs.firetv
         }
         debug {
             signingConfig signingConfigs.firetv
         }
     }
    

    Now your builds will be signed with an API key that will match the API key used in your Amazon Developer security profile (which you will create in an upcoming step — Create a Security Profile). Fire TV will then authorize the app to install.

    For more information about signing your app, see Configure the build process to automatically sign your app in the Android docs.

    You can vary from the above process for signing your app as long as you keep the general principle in mind here — when you develop and run your app on Fire TV, sign your app with a key that isn't your default Android Studio debug key but rather is a key associated with a security profile on Amazon. (You'll associate this key with a security profile in an upcoming section.)

Get the MD5 and SHA-256 Values from Your Key

You need to get the MD5 and SHA-256 values from your signing key before you can generate an API key from an Amazon security profile (described in the next step). You can easily get these values from the Gradle menu in Android Studio by doing the following:

  1. In Android Studio, click the Gradle side pane on the right and expand it.
  2. Expand app > Tasks > android.
  3. Double click signingReport.

    Signing Report in Android Studio
    Signing Report in Android Studio

    Gradle reads from your keystore and shows the MD5 and SHA-256 values in a bottom pane.

    Signing keys
    Signing keys shown through Android Studio
  4. Only the MD5 and SHA-256 values are needed. Copy these MD5 and SHA-256 values into a convenient location, as you will need them to create a security profile (described in the next step).

You can also use the keytool utility (a key and certificate management tool that is part of Java) to extract the MD5 and SHA-256 values. Expand the button below for details.

Create a Security Profile

A security profile associates your security credentials with your app. You'll create this security profile in the Developer Portal and include the MD5 and SHA-256 values in the profile's configuration. This will create an authorization between your app and the security profile and allow the Alexa Client Library to run.

To create the security profile:

  1. Sign in to https://developer.amazon.com and click Developer Console. This takes you into the Appstore Developer Console (as opposed to the Alexa Developer Console).
  2. Click Settings and then click Security Profiles from the second row of subtabs.
  3. Click the Create a New Security Profile button.
  4. In the Security Profile Name field, give your security profile a friendly name (such as your app's name). Also type a description as desired in the Security Profile Description field.

    Naming your security profile
    Naming your security profile
  5. Click Save.
  6. Click the Android/Kindle Settings tab.

    Configuring the Security Profile
    Configuring the Security Profile
  7. Complete the following fields:

    Field Description
    API Key Name This does not have to be the official name of your app. It simply identifies this particular Android app among the apps and websites registered to your security profile.
    Package This must match the package name of your Android project. In Android Studio, expand your app folder, expand manifests, and double-click AndroidManifest.XML Look for the package name near the top. For example: com.example.vskfiretv
    MD5 Signature This signature is used to verify your application. The MD5 signature must be in the form of 16 hexadecimal pairs separated by colons. For example: 02:6C:8B:83:77:91:39:C3:E8:C6:45:AC:6A:CE:B2:5B

    You extracted this value in the previous section, Get the MD5 and SHA-256 Values from Your Key.
    SHA256 Signature This signature is used to verify your application. The SHA-256 signature must be in the form of 32 hexadecimal pairs separated by colons. For example: 12:8F:C1:5D:3D:E9:BD:00:E0:ED:77:B3:84:71:AB:8F:6E:7D:C0:9E:E5:FE:64:EF:8F:BD:DA:EF:77:1F:E8:5E

    You extracted this value in the previous section, Get the MD5 and SHA-256 Values from Your Key.
  8. Click Generate New Key.
  9. Under API Key, click Show and copy the API key. Save it in the same file where you stored your video ID and other details.

    API Key Details
    API Key Details
  10. Close the API Key Details window. Then click the Web Settings tab.
  11. Copy the Client ID and Client Secret into your notes. You will use the Client ID and Client Secret when you finalize your Lambda code.

    Copying the client ID and client secret
    Copying the client secret and client ID

Enable Login with Amazon for Your Security Profile

You need to enable Login with Amazon for your security profile:

  1. In the Developer Console, click Login with Amazon on the top navigation.
  2. On the Login with Amazon Console, select your security profile from the Select a Security Profile drop-down menu.

    Enable Login with Amazon for your security profile
    Enable Login with Amazon for your security profile
  3. Click the Confirm button.
  4. In the Enter Consent Screen Information dialog box, add a Consent Privacy Notice URL URL and Consent Logo Image as desired, and then click Save. (If you're just testing, you can enter your website for the privacy URL for now.)

    The logo is displayed on the signin and consent screens when the user logs into your website or mobile app. It should be a square logo, 150px x 150px in size, PNG format. If your logo is a different size, it will be scaled to fit.

Add Your API Key into Your Fire TV Project

You need to add the API key from your security profile into your Fire TV project. This will enable your app to receive messages from Amazon Device Messaging (ADM). To add the API key to your app:

  1. In Android Studio, open your Fire TV app project.
  2. Inside your project's assets folder, create a file called api_key.txt. Placing the file in this specific directory is required.

    Sample App

    The sample app already has a file called api_key.txt. Press your spacebar twice and search for the file, and then remove its contents and paste in your API key.
  3. Insert your API key as the only data in this api_key.txt file.

Generate a Signed APK for the Developer Console

You need to generate your APK and upload it into the Developer Console so that you can associate your app with your security profile with a specific app's package name. To generate a signed APK from Android Studio:

  1. In Android Studio, generate a signed APK by going to Build and then selecting Generate Signed Bundle / APK. Select APK, and then click Next.
  2. Select the same signing key you configured earlier. Then click Next.
  3. Select the desired Destination Folder (this is where Android Studio will generate the built APK). Select the release build (note that Appstore will reject debug builds). Select the V1 (Jar Signature) check box. Then click Finish.
  4. After Android Studio builds your project, it shows a small message window with a locate link to open the destination folder where your APK was built. Click locate and open your destination folder to easily access the APK.

    Locating your built APK
    Locating your built APK

    If this window disappears, you can find the info by clicking the Event Log tab in the lower-right corner. The location within your project is app/release and the file's name is app-release.apk.

Upload Your APK into the Developer Console

Now that you generated a signed release APK, upload it into the Developer Console. To upload your APK:

  1. Sign in to the Developer Console and go to the Dashboard (click the Developer Console link in the upper-right corner).
  2. Click Apps & Services and then click My Apps.
  3. Click the Add New App button and then select Android.
  4. Give your app a name in the App title field and a category in the App category field. For more information about these fields, see Step 1: Upload Your App File in the app submission process.
  5. Click Save.
  6. On the Upload Your App File screen, drag the APK from the destination folder (where you generated it) over to the Upload your app file box. Wait for the file to upload. Then, complete the other required fields.

    For more details about this screen, see Step 1: Upload Your App File.

  7. Select a checkbox in the Language Support section (for example, English).

    The remaining details you'll complete as you follow the Getting Started with App Submission guide. For now, you must have an app to attach the security profile to. The security profile requires a package name.

Attach the Security Profile to Your App

You need to attach the security profile to your app. This will allow your app to be authorized on Fire TV. To attach the security profile to your app:

  1. If you're not already viewing your app in the Developer Console, sign in to https://developer.amazon.com and click Apps & Services and then select My Apps. Then select your app.
  2. In the column of subtabs on the left, click the App Services tab.
  3. In the Security Profile section, expand the Select existing security profile or create new link. Then in the Security Profile drop-down that appears, select the security profile you created earlier and click Enable Security Profile.

    Selecting the security profile for your app
    Selecting the security profile for your app

    You will see a confirmation message that says, Security profile "{Name}" has been successfully enabled for your app with details about the attached security profile.

  4. In the Device Messaging section, click the Enable Device Messaging button.

    Enable Device Messaging
    Enable Device Messaging
  5. This same security profile will be shown as attached for the Login with Amazon sections as well.

    Note that once you attach a security profile to an app, you cannot remove or change the security profile's attachment to the app.

Next Steps

Continue on to the next step: Step 6: Create and Deploy a Lambda Package.

(If you run into any issues that prevent you from continuing, see Troubleshooting for Cloudside Integrations.)


Last updated: Oct 02, 2023