Skip to content

Commit e451653

Browse files
author
AWS
committed
AWS SDK for Android 2.6.20
1 parent 1ca8f83 commit e451653

File tree

321 files changed

+9586
-1481
lines changed

Some content is hidden

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

321 files changed

+9586
-1481
lines changed

CHANGELOG.md

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

3+
## [Release 2.6.20](https://github.com/aws/aws-sdk-android/releases/tag/release_v2.6.20)
4+
5+
### New Features
6+
7+
* **Amazon Comprehend**
8+
* Amazon Comprehend is a natural language processing (NLP) service that uses machine learning to find insights and relationships in text.
9+
10+
* **Amazon Translate**
11+
* Amazon Translate is a neural machine translation service that delivers fast, high-quality, and affordable language translation.
12+
13+
### Misc. Updates
14+
15+
* **Amazon CloudWatch Logs**
16+
* Update Amazon CloudWatch Logs client to the latest service model.
17+
18+
* **Amazon Cognito Identity**
19+
* Update Amazon Cognito Identity client to the latest service model.
20+
21+
* **Amazon Lex**
22+
* Update Amazon Lex client to the latest service model.
23+
24+
### Bug Fixes
25+
26+
* **Amazon S3**
27+
* Support Storage Class in `TransferUtility`. See [pr #398](https://github.com/aws/aws-sdk-android/pull/398/)
28+
329
## [Release 2.6.19](https://github.com/aws/aws-sdk-android/releases/tag/release_v2.6.19)
430

531
### New Features

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,3 +284,4 @@ The AWS SDK for Android supports the following AWS services:
284284
* [Amazon Simple Queue Service (SQS)](https://aws.amazon.com/sqs/)
285285
* [Amazon SimpleDB](https://aws.amazon.com/simpledb/)
286286
* [Amazon Transcribe](https://aws.amazon.com/transcribe/)
287+
* [Amazon Comprehend](https://aws.amazon.com/comprehend)

app/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

app/src/test/java/com/amazonaws/mobileconnectors/pinpoint/awssdkforandroid/ExampleUnitTest.kt

Lines changed: 0 additions & 17 deletions
This file was deleted.

aws-android-sdk-apigateway-core/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>com.amazonaws</groupId>
6+
<artifactId>aws-android-sdk-apigateway-core</artifactId>
7+
<packaging>jar</packaging>
8+
<name>AWS SDK for Android - Amazon API Gateway Client Runtime</name>
9+
<description>The AWS Android SDK for Amazon API Gateway Runtime module holds the runtime library needed by the generated client for APIs defined in Amazon API Gateway.</description>
10+
<url>http://aws.amazon.com/sdkforandroid</url>
11+
12+
<parent>
13+
<groupId>com.amazonaws</groupId>
14+
<artifactId>aws-android-sdk-pom</artifactId>
15+
<version>2.6.20</version>
16+
</parent>
17+
18+
<dependencies>
19+
<dependency>
20+
<groupId>com.amazonaws</groupId>
21+
<artifactId>aws-android-sdk-core</artifactId>
22+
<optional>false</optional>
23+
<version>2.6.20</version>
24+
</dependency>
25+
</dependencies>
26+
27+
<build>
28+
<plugins>
29+
<plugin>
30+
<groupId>org.apache.maven.plugins</groupId>
31+
<artifactId>maven-compiler-plugin</artifactId>
32+
</plugin>
33+
<plugin>
34+
<groupId>org.apache.maven.plugins</groupId>
35+
<artifactId>maven-javadoc-plugin</artifactId>
36+
</plugin>
37+
</plugins>
38+
</build>
39+
</project>

aws-android-sdk-auth-core/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

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

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>com.amazonaws</groupId>
6+
<artifactId>aws-android-sdk-auth-core</artifactId>
7+
<packaging>aar</packaging>
8+
<name>AWS SDK for Android - AWS Authentication Core</name>
9+
<description>The AWS Android SDK for AWS Authentication Core module holds the client classes that are used for enabling communication with Amazon CognitoIdentityProvider, Amazon Cognito UserPools, Facebook and Google SignIn Providers</description>
10+
<url>http://aws.amazon.com/sdkforandroid</url>
11+
12+
<properties>
13+
<project.build.sourceEncoding>
14+
UTF-8
15+
</project.build.sourceEncoding>
16+
<project.reporting.outputEncoding>
17+
UTF-8
18+
</project.reporting.outputEncoding>
19+
</properties>
20+
21+
<parent>
22+
<groupId>com.amazonaws</groupId>
23+
<artifactId>aws-android-sdk-pom</artifactId>
24+
<version>2.6.20</version>
25+
</parent>
26+
27+
<dependencies>
28+
<dependency>
29+
<groupId>com.amazonaws</groupId>
30+
<artifactId>aws-android-sdk-core</artifactId>
31+
<optional>false</optional>
32+
<version>2.6.20</version>
33+
</dependency>
34+
35+
<dependency>
36+
<groupId>com.google.android</groupId>
37+
<artifactId>android</artifactId>
38+
<version>4.1.1.4</version>
39+
<scope>provided</scope>
40+
</dependency>
41+
</dependencies>
42+
43+
<build>
44+
<plugins>
45+
<plugin>
46+
<groupId>com.simpligility.maven.plugins</groupId>
47+
<artifactId>android-maven-plugin</artifactId>
48+
<version>4.5.0</version>
49+
<extensions>true</extensions>
50+
<configuration>
51+
<sdk>
52+
<platform>11</platform>
53+
<buildTools>19.1.0</buildTools>
54+
</sdk>
55+
</configuration>
56+
</plugin>
57+
58+
<plugin>
59+
<groupId>org.apache.maven.plugins</groupId>
60+
<artifactId>maven-compiler-plugin</artifactId>
61+
</plugin>
62+
63+
<plugin>
64+
<groupId>org.apache.maven.plugins</groupId>
65+
<artifactId>maven-javadoc-plugin</artifactId>
66+
</plugin>
67+
</plugins>
68+
</build>
69+
</project>

aws-android-sdk-auth-core/src/androidTest/java/com/amazonaws/mobileconnectors/demo/aws_android_sdk_auth_core/ExampleInstrumentedTest.java

Lines changed: 0 additions & 26 deletions
This file was deleted.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
<?xml version="1.0" encoding="utf-8"?>
12
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
23
package="com.amazonaws.mobile.auth.core">
34

4-
<uses-sdk android:minSdkVersion="15" android:targetSdkVersion="25" />
5-
</manifest>
5+
<uses-sdk android:minSdkVersion="15" android:targetSdkVersion="25" /></manifest>

0 commit comments

Comments
 (0)