Download
Download the AWS SDK for Android 1.3.2
New Features
| Change | Description |
|---|---|
| AWS Signature Version 4 for Auto Scaling, Amazon CloudWatch and Amazon DynamoDB |
Signature Version 4 will enable AWS to support future growth and evolution of the AWS business. This release of the AWS SDK for Android uses Signature Version 4 for the Auto Scaling, Amazon CloudWatch and Amazon DynamoDB. For more information about AWS Signature Version 4, go to Signature Version 4 Signing Process in the AWS Documentation. |
| Bounce and Complaint Notifications for Amazon Simple Email Service |
Now you can set an Amazon SNS topic for bounce or complaint notifications by verified domain or email address and receive them in a simple JSON format. This release of the AWS SDK for Android supports the Bounce and Complaint Notifications for the Amazon Simple Email Service. For more information about Bounce and Complaint Notifications, go to Bounce and Complaint Notifications in the AWS Documentation. |
| Updated Token Vending Machine Sample Client |
The Token Vending Machine sample client has better error handling logic. |
Supported API Versions
This release of the SDK supports the following API versions:
| Service | API Version |
|---|---|
| Amazon CloudWatch | 2010-08-01 |
| Amazon DynamoDB | 2011-12-05 |
| Amazon Elastic Compute Cloud (EC2) | 2012-03-01 |
| Amazon Simple Email Service (SES) | 2010-12-01 |
| Amazon Simple Notification Service (SNS) | 2010-03-31 |
| Amazon Simple Queue Service | 2011-10-01 |
| Amazon Simple Storage Service (S3) | 2006-03-01 |
| Amazon SimpleDB | 2009-04-15 |
| Auto Scaling | 2011-01-01 |
| AWS Security Token Service | 2011-06-15 |
| Elastic Load Balancing | 2011-11-15 |
Known Issues
| Issue | Description |
|---|---|
| Problems with Amazon DynamoDB over SSL | We have seen issues using Amazon DynamoDB over SSL with Android v2.1. Android versions 2.2 and later all work with Amazon DynamoDB over SSL.
To not use SSL change the client endpoint for Amazon DynamoDB as follows:
AmazonDynamoDBClient dynamoDbClient = new AmazonDynamoDBClient( credentials ); dynamoDbClient.setEndpoint( "http://dynamodb.us-east-1.amazonaws.com" ); |
| Use of DynamoDBMapper with Android 2.1 | While the rest of the AWS SDK for Android is still supported on Android versions 2.1 and later, the Object Persistence Model, DynamoDBMapper, is only supported with Android versions 2.2 and later. |