Posts

Showing posts from December, 2021

How to play an Audio file located in an Amazon S3 bucket in your web page

Image
 You can play an Audio file (MP3) that is located in your Amazon S3 bucket in your web page.  You can follow these steps: 1. Install the JQuery plug-in by following the instructions in the jPlayer documentation . 2. Add the plug-in to your page, along with the required the CSS. <!DOCTYPE HTML> <html xmlns:th="https://www.thymeleaf.org"> <head>     <meta charset="utf-8" />     <meta http-equiv="X-UA-Compatible" content="IE=edge" />     <meta name="viewport" content="width=device-width, initial-scale=1" />     <link rel="stylesheet" th:href="|https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css|"/>     <link rel="stylesheet" th:href="|https://cdnjs.cloudflare.com/ajax/libs/jplayer/2.9.2/skin/pink.flag/css/jplayer.pink.flag.css|"/>     <script th:src="|https://code.jquery.com/jquery-1.12.4.min.js|"></script...

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

Image
  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/awsd...