Front-End Web & Mobile
Tag: aws-sdk-android
User settings sync for Android with AWS AppSync
Amazon Cognito Sync is a service that you can use for syncing application-related user profile data across devices. The client library caches the data locally so that the app can read and write data, regardless of the device connectivity state. The data stored is generally shown as a key-value pair, where the keys and values […]
Integrating Amazon Cognito with the Android AccountManager API
This is the fourth part in a six-part series on synchronizing data within an Android mobile app to the AWS Cloud. Check out the full series: An Introduction to the Sync Framework for Android Building a ContentProvider for Android Using a ContentProvider in Android Mobile Apps Integrating Amazon Cognito with the Android AccountManager API (this article) […]
How to: Record User Sign-in on Android with Amazon Pinpoint
In a previous post, we introduced the AWS Mobile SDK v2.6.0 for Android and implemented user sign-in and sign-up with IdentityManager. IdentityManager is a new capability in the AWS Mobile SDK that provides a native graphical interface for authentication. We also showed how to add basic session analytics using Amazon Pinpoint. We want to show […]
An Introduction to the Sync Framework for Android
This is the first part in a six-part series on synchronizing data within an Android mobile app to the AWS Cloud. Check out the full series: An Introduction to the Sync Framework for Android (this article) Building a ContentProvider for Android Using a ContentProvider in Android Mobile Apps Integrating Amazon Cognito with the Android AccountManager API […]
Easy Sign-in and Sign-up UI with the AWS Mobile SDK for Android
Recently, we released v2.6.0 of the AWS Mobile SDK for Android and AWS Mobile SDK for iOS. It includes many improvements. This post focuses on two of these. First, you can integrate a JSON file with the configuration details of your mobile backend. The easiest way to generate this file is with AWS Mobile Hub. […]
Using Amazon DynamoDB Document API with the AWS Mobile SDK for Android – Part 2
In the first part of this blog, we introduced you to the Amazon DynamoDB Document API. This API is a mechanism for accessing data in DynamoDB that doesn’t require you to map models to the data. Instead, you access the data through standard accessor methods on a standard Document object. In this blog post, we […]
Using Amazon DynamoDB Document API with AWS Mobile SDK for Android – Part 1
The AWS Mobile SDK for Android helps developers write mobile apps by providing simplified APIs for using AWS services, such as Amazon Cognito and Amazon DynamoDB. In the past, to access data, you needed to use the DynamoDB Object Mapper (or use the service APIs). You then had to define a model within your mobile […]
Encrypting an Amazon S3 object on the client side with AWS KMS and the AWS Mobile SDK for Android
Starting with the AWS Mobile SDK for Android version 2.4.0, you have two options to encrypt client-side objects before sending them to Amazon S3: an AWS Key Management Service (AWS KMS) customer master key (CMK) or a client-side master key. Customer master key When using an AWS KMS customer master key (CMK) for […]