Skip to content

Commit b46825a

Browse files
author
AWS
committed
AWS SDK for Android 2.6.14
1 parent 5fa37bb commit b46825a

File tree

43 files changed

+132
-99
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+132
-99
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Change Log - AWS SDK for Android
22

3+
## [Release 2.6.14](https://github.com/aws/aws-sdk-android/releases/tag/release_v2.6.14)
4+
5+
### Bug Fixes
6+
7+
* **Amazon CloudWatch Logs**
8+
* Allow `Amazon CloudWatch Logs` SDK to be fetched via maven. See [issue #392](https://github.com/aws/aws-sdk-android/issues/392)
9+
10+
### Enhancements
11+
12+
* **Amazon Cognito Identity Provider**
13+
* Repackaged Amazon Cognito Identity Service Provider Android SDK to change dependency for ASF components.
14+
15+
* **Amazon Cognito Auth**
16+
* Repackaged Amazon Cognito Auth Android SDK to change dependency for ASF components. Use `{ transitive = true; }` while importing `aws-android-sdk-cognitoauth` via maven in gradle.
17+
318
## [Release 2.6.13](https://github.com/aws/aws-sdk-android/releases/tag/release_v2.6.13)
419

520
### Bug Fixes

README.md

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The [AWS SDK for Android](http://aws.amazon.com/sdkforandroid) provides a librar
1414

1515
* **[Code Samples](https://github.com/awslabs/aws-sdk-android-samples)** - Repository of example projects using the SDK.
1616
* **[AWS Mobile Forum](https://forums.aws.amazon.com/forum.jspa?forumID=88)** – Ask questions, get help, and give feedback
17-
* **[Developer Guide](http://docs.aws.amazon.com/mobile/sdkforandroid/developerguide/)** - For in-depth getting started and usage information.
17+
* **[Developer Guide](https://docs.aws.amazon.com/aws-mobile/latest/developerguide/getting-started.html)** - For in-depth getting started and usage information.
1818
* **[Javadoc](http://docs.aws.amazon.com/AWSAndroidSDK/latest/javadoc/)** - For operations, parameters, responses, and examples
1919
* **[AWS Mobile Developer Blog](http://mobile.awsblog.com/)** - For updates and guidance on using the AWS SDK for Android
2020
* **[Release Notes](https://aws.amazon.com/releasenotes/Android)** - To see the latest features, bug fixes, and changes in the SDK
@@ -29,29 +29,33 @@ This section explains how to understand and work with the various components of
2929

3030
The AWS SDK for Android supports the following AWS services:
3131

32+
* [Amazon API Gateway](https://aws.amazon.com/api-gateway/)
33+
* [Amazon Auto Scaling](https://aws.amazon.com/autoscaling/)
3234
* [Amazon CloudWatch](https://aws.amazon.com/cloudwatch/)
35+
* [Amazon CloudWatch Logs](https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CWL_GettingStarted.html)
3336
* [Amazon Cognito](https://aws.amazon.com/cognito/)
37+
* [Amazon Cognito Auth](https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-userpools-server-contract-reference.html)
3438
* [Amazon DynamoDB](https://aws.amazon.com/dynamodb/)
3539
* [Amazon Elastic Compute Cloud (EC2)](https://aws.amazon.com/ec2/)
40+
* [Amazon Elastic Load Balancing (ELB)](https://aws.amazon.com/elasticloadbalancing/)
41+
* [AWS IoT](https://aws.amazon.com/iot/)
42+
* [AWS Key Management Service (KMS)](https://aws.amazon.com/kms/)
3643
* [Amazon Kinesis Firehose](https://aws.amazon.com/kinesis/firehose/)
3744
* [Amazon Kinesis Streams](https://aws.amazon.com/kinesis/streams/)
45+
* [Amazon Kinesis Video Streams](https://aws.amazon.com/kinesis/video-streams/)
46+
* [AWS Lambda](https://aws.amazon.com/lambda/)
3847
* [Amazon Lex](https://aws.amazon.com/lex)
3948
* [Amazon Machine Learning](https://aws.amazon.com/machine-learning/)
4049
* [Amazon Mobile Analytics](https://aws.amazon.com/mobileanalytics/)
41-
* [Amazon Polly](https://aws.amazon.com/polly/)
4250
* [Amazon Pinpoint](https://aws.amazon.com/pinpoint/)
51+
* [Amazon Polly](https://aws.amazon.com/polly/)
52+
* [Amazon Rekoginiton](https://aws.amazon.com/rekognition/)
4353
* [Amazon S3](https://aws.amazon.com/s3/)
4454
* [Amazon Security Token Service (STS)](https://docs.aws.amazon.com/STS/latest/APIReference/Welcome.html)
4555
* [Amazon Simple Email Service (SES)](https://aws.amazon.com/ses/)
4656
* [Amazon Simple Notification Service (SNS)](https://aws.amazon.com/sns/)
4757
* [Amazon Simple Queue Service (SQS)](https://aws.amazon.com/sqs/)
4858
* [Amazon SimpleDB](https://aws.amazon.com/simpledb/)
49-
* [Auto Scaling](https://aws.amazon.com/autoscaling/)
50-
* [AWS Key Management Service (KMS)](https://aws.amazon.com/kms/)
51-
* [AWS Lambda](https://aws.amazon.com/lambda/)
52-
* [Elastic Load Balancing](https://aws.amazon.com/elasticloadbalancing/)
53-
54-
5559

5660
### A Quick Code Example
5761

@@ -95,7 +99,7 @@ private class S3Example extends AsyncTask<Void,Void,Void>{
9599
### SDK Fundamentals
96100
There are only a few fundamentals that are helpful to know when developing against the AWS SDK for Android.
97101

98-
* Never embed credentrials in an Android application. It is trivially easy to decompile applications and steal embedded credentials. Always use temporarily vended credentials from services such as [Amazon Cognito Identity](http://docs.aws.amazon.com/mobile/sdkforandroid/developerguide/cognito-auth.html).
102+
* Never embed credentrials in an Android application. It is trivially easy to decompile applications and steal embedded credentials. Always use temporarily vended credentials from services such as [Amazon Cognito Identity](https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-identity.html).
99103
* Unless explicitly stated, calls are synchronous and must be taken off of the main thread.
100104
* Unless explicitly stated, calls can always throw an AmazonServiceException or an AmazonClientException (depending on if the exception is generated by the client or the service).
101105
* The SDK will handle re-trying requests automatically, but unless explicitly stated will throw an exception if it cannot contact AWS.

aws-android-sdk-apigateway-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
<parent>
1313
<groupId>com.amazonaws</groupId>
1414
<artifactId>aws-android-sdk-pom</artifactId>
15-
<version>2.6.13</version>
15+
<version>2.6.14</version>
1616
</parent>
1717

1818
<dependencies>
1919
<dependency>
2020
<groupId>com.amazonaws</groupId>
2121
<artifactId>aws-android-sdk-core</artifactId>
2222
<optional>false</optional>
23-
<version>2.6.13</version>
23+
<version>2.6.14</version>
2424
</dependency>
2525
</dependencies>
2626

aws-android-sdk-auth-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
<parent>
2222
<groupId>com.amazonaws</groupId>
2323
<artifactId>aws-android-sdk-pom</artifactId>
24-
<version>2.6.13</version>
24+
<version>2.6.14</version>
2525
</parent>
2626

2727
<dependencies>
2828
<dependency>
2929
<groupId>com.amazonaws</groupId>
3030
<artifactId>aws-android-sdk-core</artifactId>
3131
<optional>false</optional>
32-
<version>2.6.13</version>
32+
<version>2.6.14</version>
3333
</dependency>
3434

3535
<dependency>

aws-android-sdk-auth-facebook/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>com.amazonaws</groupId>
2323
<artifactId>aws-android-sdk-pom</artifactId>
24-
<version>2.6.13</version>
24+
<version>2.6.14</version>
2525
</parent>
2626

2727
<repositories>
@@ -36,7 +36,7 @@
3636
<groupId>com.amazonaws</groupId>
3737
<artifactId>aws-android-sdk-auth-core</artifactId>
3838
<optional>false</optional>
39-
<version>2.6.13</version>
39+
<version>2.6.14</version>
4040
<type>aar</type>
4141
</dependency>
4242
<dependency>

aws-android-sdk-auth-google/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>com.amazonaws</groupId>
2323
<artifactId>aws-android-sdk-pom</artifactId>
24-
<version>2.6.13</version>
24+
<version>2.6.14</version>
2525
</parent>
2626

2727
<repositories>
@@ -40,7 +40,7 @@
4040
<groupId>com.amazonaws</groupId>
4141
<artifactId>aws-android-sdk-auth-core</artifactId>
4242
<optional>false</optional>
43-
<version>2.6.13</version>
43+
<version>2.6.14</version>
4444
<type>aar</type>
4545
</dependency>
4646

aws-android-sdk-auth-ui/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>com.amazonaws</groupId>
2323
<artifactId>aws-android-sdk-pom</artifactId>
24-
<version>2.6.13</version>
24+
<version>2.6.14</version>
2525
</parent>
2626

2727
<repositories>
@@ -36,28 +36,28 @@
3636
<groupId>com.amazonaws</groupId>
3737
<artifactId>aws-android-sdk-auth-core</artifactId>
3838
<optional>false</optional>
39-
<version>2.6.13</version>
39+
<version>2.6.14</version>
4040
<type>aar</type>
4141
</dependency>
4242
<dependency>
4343
<groupId>com.amazonaws</groupId>
4444
<artifactId>aws-android-sdk-auth-google</artifactId>
4545
<optional>true</optional>
46-
<version>2.6.13</version>
46+
<version>2.6.14</version>
4747
<type>aar</type>
4848
</dependency>
4949
<dependency>
5050
<groupId>com.amazonaws</groupId>
5151
<artifactId>aws-android-sdk-auth-facebook</artifactId>
5252
<optional>true</optional>
53-
<version>2.6.13</version>
53+
<version>2.6.14</version>
5454
<type>aar</type>
5555
</dependency>
5656
<dependency>
5757
<groupId>com.amazonaws</groupId>
5858
<artifactId>aws-android-sdk-auth-userpools</artifactId>
5959
<optional>true</optional>
60-
<version>2.6.13</version>
60+
<version>2.6.14</version>
6161
<type>aar</type>
6262
</dependency>
6363
<dependency>

aws-android-sdk-auth-ui/src/main/java/com/amazonaws/mobile/auth/ui/SignInView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public class SignInView extends LinearLayout {
5858
private static final int IMAGE_LAYOUT_MARGINS = dp(10);
5959

6060
/** String that represents the SDK Version. */
61-
private static final String SDK_VERSION = "2.6.13";
61+
private static final String SDK_VERSION = "2.6.14";
6262

6363
/** Common Prefix of the namespaces of different SignIn providers. */
6464
private static final String NAMESPACE_COMMON_PREFIX = "com.amazonaws.mobile.auth";

aws-android-sdk-auth-userpools/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>com.amazonaws</groupId>
2323
<artifactId>aws-android-sdk-pom</artifactId>
24-
<version>2.6.13</version>
24+
<version>2.6.14</version>
2525
</parent>
2626

2727
<repositories>
@@ -36,14 +36,14 @@
3636
<groupId>com.amazonaws</groupId>
3737
<artifactId>aws-android-sdk-cognitoidentityprovider</artifactId>
3838
<optional>false</optional>
39-
<version>2.6.13</version>
39+
<version>2.6.14</version>
4040
</dependency>
4141

4242
<dependency>
4343
<groupId>com.amazonaws</groupId>
4444
<artifactId>aws-android-sdk-auth-core</artifactId>
4545
<optional>false</optional>
46-
<version>2.6.13</version>
46+
<version>2.6.14</version>
4747
<type>aar</type>
4848
</dependency>
4949

aws-android-sdk-autoscaling/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
<parent>
1313
<groupId>com.amazonaws</groupId>
1414
<artifactId>aws-android-sdk-pom</artifactId>
15-
<version>2.6.13</version>
15+
<version>2.6.14</version>
1616
</parent>
1717

1818
<dependencies>
1919
<dependency>
2020
<groupId>com.amazonaws</groupId>
2121
<artifactId>aws-android-sdk-core</artifactId>
2222
<optional>false</optional>
23-
<version>2.6.13</version>
23+
<version>2.6.14</version>
2424
</dependency>
2525
</dependencies>
2626

0 commit comments

Comments
 (0)