Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 4.06 KB

README.md

File metadata and controls

50 lines (33 loc) · 4.06 KB

Running Lex Sample

This sample demonstrates how to use Amazon Lex interaction client library on Android. This application uses AWS Cognito for authentication with Amazon Lex.

Requirements

  • AndroidStudio
  • Android API 11 or greater

Using the Sample

  1. Import the LexDemo project into Android Studio.

    • From the Welcome screen, click on "Import project".
    • Browse to the LexDemo directory and press OK.
    • Accept the messages about adding Gradle to the project.
    • If the SDK reports some missing Android SDK packages (like Build Tools or the Android API package), follow the instructions to install them.
  2. Import the libraries :

    • Gradle will take care of downloading these dependencies for you.
  3. This sample requires Cognito to authorize to Amazon Lex to post content. Use Amazon Cognito to create a new identity pool:

    1. In the Amazon Cognito Console, press the Manage Federated Identities button and on the resulting page press the Create new identity pool button.

    2. Give your identity pool a name and ensure that Enable access to unauthenticated identities under the Unauthenticated identities section is checked. This allows the sample application to assume the unauthenticated role associated with this identity pool. Press the Create Pool button to create your identity pool.

      Important: see note below on unauthenticated user access.

    3. As part of creating the identity pool, Cognito will setup two roles in Identity and Access Management (IAM). These will be named something similar to: Cognito_PoolNameAuth_Role and Cognito_PoolNameUnauth_Role. You can view them by pressing the View Details button. Now press the Allow button to create the roles.

    4. Save the Identity pool ID value that shows up in red in the "Getting started with Amazon Cognito" page, it should look similar to: `us-east-1:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" and note the region that is being used. These will be used in the application code later.

    5. Now we will attach a policy to the unauthenticated role which has permissions to access the required Amazon Lex API. This is done by attaching an IAM Policy to the unauthenticated role in the IAM Console. First, search for the unauth role that you created in step 3 above (named something similar to Cognito_PoolNameUnauth_Role) and select its hyperlink. In the resulting "Summary" page press the Attach Policy button in the "Permissions" tab.

    6. Search for "lex" and check the box next to the policy named AmazonLexFullAccess and then press the Attach Policy button. This policy allows the application to perform all operations on the Amazon Lex service.

      More information on AWS IAM roles and policies can be found here. More information on Amazon Lex policies can be found here.

      Note: to keep this example simple it makes use of unauthenticated users in the identity pool. This can be used for getting started and prototypes but unauthenticated users should typically only be given read-only permissions in production applications. More information on Cognito identity pools including the Cognito developer guide can be found here.

  4. Open the LexSample project.

  5. Open res/values/strings.xml and update the values for Lex region, your Amazon Lex Bot name and the Bot Alias (usually $LATEST).

  6. Open res/raw/awsconfiguration.json and update the values for Cognito Identity Pool ID (from the value you saved above) and Cognito region for Cognito Identity Pool Id (for example us-east-1).

    "PoolId": "REPLACE_ME",
    "Region": "REPLACE_ME"
    
  7. Build and run the sample app.

  8. Select Text Demo or Voice Demo as appropriate, and try out some of the sample utterance you have configured on the Amazon Lex console.