Thursday, December 2, 2021

Creating your first Native Android application using the AWS SDK for Kotlin

 You can develop a native Android application that lets application users submit mobile data to an Amazon DynamoDB table by using the AWS SDK for Kotlin. In addition to using Amazon DynamoDB Kotlin API, this Android application also uses the Amazon Simple Notification Service (Amazon SNS) Kotlin API. For example, this Android application uses the aws.sdk.kotlin.services.dynamodb.DynamoDbClient to store data within a DynamoDB table. After the DynamoDB table is updated, the application uses the Kotlin Amazon SNS API to send a text message to notify a user. This application also uses the Android API to build the application logic. For more information, see Android API reference.

The Amazon DynamoDB Kotlin API lets you perform the following tasks from within an Android project:

  • Access your tables
  • Perform various create, read, update, and delete (CRUD) operations
  • Execute queries

The following shows the application you'll create.


Click https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/kotlin/usecases/first_android_app

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Deploying a Java web application to Amazon ECS

 You can deploy a Java web application that uses the AWS SDK for Java (v2) to Amazon Elastic Container Service (Amazon ECS). Amazon ECS is a...